diff mercurial/util.py @ 667:31a9aa890016

A number of minor fixes to problems that pychecker found. # HG changeset patch # User mark.williamson@cl.cam.ac.uk # Node ID 55d38977b7f2e73b8c1090179928ac96c8922b90 # Parent b3bba126b04ab2f24274a1bcf5a224c6317c8e0d A number of minor fixes to problems that pychecker found.
author mark.williamson@cl.cam.ac.uk
date Sun, 10 Jul 2005 16:01:11 -0800
parents f6c6fa15ff70
children df78d8ccac4c 574869103985
line wrap: on
line diff
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -25,7 +25,7 @@ def explain_exit(code):
         val = os.WTERMSIG(code)
         return "killed by signal %d" % val, val
     elif os.WIFSTOPPED(code):
-        val = os.STOPSIG(code)
+        val = os.WSTOPSIG(code)
         return "stopped by signal %d" % val, val
     raise ValueError("invalid exit code")