indent fix

This commit is contained in:
Anthony Scopatz 2016-07-26 03:52:33 -04:00
parent ff092c5ec4
commit 5574efb91e

View file

@ -287,10 +287,10 @@ class BackgroundModuleLoader(threading.Thread):
while counter < 5:
new = len(sys.modules)
if new == last:
counter += 1
counter += 1
else:
last = new
counter = 0
last = new
counter = 0
time.sleep(0.001)
# now import module properly
modname = importlib.util.resolve_name(self.name, self.package)