summaryrefslogtreecommitdiff
path: root/Lib/lib2to3/fixer_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib2to3/fixer_util.py')
-rw-r--r--Lib/lib2to3/fixer_util.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/lib2to3/fixer_util.py b/Lib/lib2to3/fixer_util.py
index 0d9327811d..3b136694a6 100644
--- a/Lib/lib2to3/fixer_util.py
+++ b/Lib/lib2to3/fixer_util.py
@@ -291,8 +291,6 @@ def touch_import(package, name, node):
if does_tree_import(package, name, root):
return
- add_newline_before = False
-
# figure out where to insert the new import. First try to find
# the first import and then skip to the last one.
insert_pos = offset = 0
@@ -312,7 +310,6 @@ def touch_import(package, name, node):
if node.type == syms.simple_stmt and node.children and \
node.children[0].type == token.STRING:
insert_pos = idx + 1
- add_newline_before
break
if package is None:
@@ -324,8 +321,6 @@ def touch_import(package, name, node):
import_ = FromImport(package, [Leaf(token.NAME, name, prefix=u' ')])
children = [import_, Newline()]
- if add_newline_before:
- children.insert(0, Newline())
root.insert_child(insert_pos, Node(syms.simple_stmt, children))