summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--isort/isort.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/isort.py b/isort/isort.py
index a1f466c2..7ff4cdb2 100644
--- a/isort/isort.py
+++ b/isort/isort.py
@@ -788,7 +788,7 @@ class SortImports(object):
self.out_lines.append(line)
continue
- line = line.replace("\t", " ")
+ line = line.replace("\t", " ").replace('import*', 'import *')
if self.import_index == -1:
self.import_index = self.index - 1