[SCM] GUI front-end for Debian Live. branch, master,	updated. 08faf0d678877236b2a81da93a8c822d69ad49d1
    Chris Lamb 
    chris at chris-lamb.co.uk
       
    Fri Apr  4 17:23:23 UTC 2008
    
    
  
The following commit has been merged in the master branch:
commit b8f3c58f5217489f8f099617e996a9c8749db76f
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date:   Fri Apr 4 18:17:31 2008 +0100
    live-magic: Don't show KeyboardInterrupt 'error' on ^C
    
    Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>
diff --git a/live-magic b/live-magic
index 0fc7a12..3ab0be0 100755
--- a/live-magic
+++ b/live-magic
@@ -5,4 +5,7 @@ import sys
 from LiveMagic import LiveMagic
 
 if __name__ == '__main__':
-    LiveMagic(sys.argv[1:])
+    try:
+        LiveMagic(sys.argv[1:])
+    except KeyboardInterrupt:
+        sys.exit(1)
-- 
GUI front-end for Debian Live.
    
    
More information about the debian-live-changes
mailing list