[Python-checkins] r67766 - sandbox/trunk/2to3/lib2to3/fixes/fix_imports2.py

benjamin.peterson python-checkins at python.org
Sun Dec 14 21:13:06 CET 2008


Author: benjamin.peterson
Date: Sun Dec 14 21:13:05 2008
New Revision: 67766

Log:
use run_order instead of order

Modified:
   sandbox/trunk/2to3/lib2to3/fixes/fix_imports2.py

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_imports2.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_imports2.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_imports2.py	Sun Dec 14 21:13:05 2008
@@ -11,6 +11,6 @@
 
 class FixImports2(fix_imports.FixImports):
 
-    order = "post"
+    run_order = 6
 
     mapping = MAPPING


More information about the Python-checkins mailing list