[Jython-checkins] jython: Fixed output of successful patches in applypatches.py

alex.gronholm jython-checkins at python.org
Wed Mar 14 19:09:53 CET 2012


http://hg.python.org/jython/rev/c2184b0d2778
changeset:   6359:c2184b0d2778
user:        Alex Grönholm <alex.gronholm at nextday.fi>
date:        Wed Mar 14 11:07:24 2012 -0700
summary:
  Fixed output of successful patches in applypatches.py

files:
  .hgsubstate          |  2 +-
  Misc/applypatches.py |  7 +++----
  2 files changed, 4 insertions(+), 5 deletions(-)


diff --git a/.hgsubstate b/.hgsubstate
--- a/.hgsubstate
+++ b/.hgsubstate
@@ -1,1 +1,1 @@
-88741 CPythonLib
+88850 CPythonLib
diff --git a/Misc/applypatches.py b/Misc/applypatches.py
--- a/Misc/applypatches.py
+++ b/Misc/applypatches.py
@@ -34,12 +34,11 @@
 
 if succeeded:
     print '\nThe following files were successfully patched:'
-    for path in succeeded:
-        for path in succeeded:
-            print path
+    for path in sorted(succeeded):
+        print path
 
 if failed:
     print '\nPatching failed for the following files:'
-    for path in failed:
+    for path in sorted(failed):
         print path
     print '\nYou will need to migrate these modules manually.'

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list