[Python-checkins] r67427 - sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py

benjamin.peterson python-checkins at python.org
Fri Nov 28 23:07:41 CET 2008


Author: benjamin.peterson
Date: Fri Nov 28 23:07:41 2008
New Revision: 67427

Log:
fix spelling in comment

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

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py	Fri Nov 28 23:07:41 2008
@@ -100,8 +100,8 @@
         match = super(FixImports, self).match
         results = match(node)
         if results:
-            # Module usage could be in the trailier of an attribute lookup, so
-            # we might have nested matches when "bare_with_attr" is present.
+            # Module usage could be in the trailer of an attribute lookup, so we
+            # might have nested matches when "bare_with_attr" is present.
             if "bare_with_attr" not in results and \
                     any([match(obj) for obj in attr_chain(node, "parent")]):
                 return False


More information about the Python-checkins mailing list