[Python-checkins] r79309 - sandbox/trunk/2to3/lib2to3/fixes/fix_exitfunc.py

benjamin.peterson python-checkins at python.org
Mon Mar 22 23:50:47 CET 2010


Author: benjamin.peterson
Date: Mon Mar 22 23:50:47 2010
New Revision: 79309

Log:
pass correct symbol in

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

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_exitfunc.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_exitfunc.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_exitfunc.py	Mon Mar 22 23:50:47 2010
@@ -62,7 +62,7 @@
             containing_stmt = self.sys_import.parent
             position = containing_stmt.children.index(self.sys_import)
             stmt_container = containing_stmt.parent
-            new_import = pytree.Node("import_name",
+            new_import = pytree.Node(syms.import_name,
                               [Name("import"), Name("atexit", " ")]
                               )
             new = pytree.Node("simple_stmt", [new_import])


More information about the Python-checkins mailing list