diff mercurial/localrepo.py @ 7644:182b7114d35a

error: move SignalInterrupt now derived from KeyboardInterrupt to simplify catches
author Matt Mackall <mpm@selenic.com>
date Mon, 12 Jan 2009 11:48:05 -0600
parents d2f753830f80
children 816b708f23af
line wrap: on
line diff
--- a/mercurial/localrepo.py	Mon Jan 12 11:39:38 2009 -0600
+++ b/mercurial/localrepo.py	Mon Jan 12 11:48:05 2009 -0600
@@ -412,7 +412,7 @@
                 if not l: continue
                 node, label = l.split(" ", 1)
                 partial[label.strip()] = bin(node)
-        except (KeyboardInterrupt, util.SignalInterrupt):
+        except KeyboardInterrupt:
             raise
         except Exception, inst:
             if self.ui.debugflag: