Fix 2to3 fixers to work with Python 3.

This commit is contained in:
Valentin Lorentz 2013-01-06 13:35:20 +01:00
parent fee7ed4cd1
commit 6cf4901344
1 changed files with 1 additions and 1 deletions

View File

@ -23,5 +23,5 @@ class FixReload(fixer_base.BaseFix):
"""
def transform(self, node, results):
touch_import('imp', u'reload', node)
touch_import('imp', 'reload', node)
return node