From 6cf4901344033b50c6e56a9c878a7e89f33d3880 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 6 Jan 2013 13:35:20 +0100 Subject: [PATCH] Fix 2to3 fixers to work with Python 3. --- 2to3/fix_reload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2to3/fix_reload.py b/2to3/fix_reload.py index b4894f3d6..99704138b 100644 --- a/2to3/fix_reload.py +++ b/2to3/fix_reload.py @@ -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