mercurial/worker.py
changeset 19408 c7ec39c1a381
parent 19406 3185b347ae98
child 20034 1e5b38a919dd
--- a/mercurial/worker.py	Tue Jul 16 12:44:11 2013 -0500
+++ b/mercurial/worker.py	Tue Jul 16 15:18:12 2013 -0500
@@ -89,11 +89,8 @@
                 os._exit(0)
             except KeyboardInterrupt:
                 os._exit(255)
-            except: # re-raises (close enough for debugging anyway)
-                try:
-                    ui.traceback()
-                finally:
-                    os._exit(255)
+                # other exceptions are allowed to propagate, we rely
+                # on lock.py's pid checks to avoid release callbacks
         pids.append(pid)
     pids.reverse()
     os.close(wfd)