From 7c9b33a403032d5b2e0830bc7fbbbb74658a1ed9 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Mon, 22 May 2017 22:31:41 -0700 Subject: Implement a fix for issue #496 --- isort/isort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1