diff options
Diffstat (limited to 'Demo/sgi/video/Vedit.py')
-rwxr-xr-x | Demo/sgi/video/Vedit.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Demo/sgi/video/Vedit.py b/Demo/sgi/video/Vedit.py index 9cae931..6993dfa 100755 --- a/Demo/sgi/video/Vedit.py +++ b/Demo/sgi/video/Vedit.py @@ -246,4 +246,8 @@ class Editor: getattr(self, io + '_info2').label = `pos` getattr(self, io + '_info3').label = `right` -main() + +try: + main() +except KeyboardInterrupt: + print '[Interrupt]' |