cleanup
This commit is contained in:
parent
d76e5ad1ee
commit
748cbaa074
|
@ -9,6 +9,7 @@ MANIFEST
|
|||
.coverage
|
||||
.idea
|
||||
.cache/
|
||||
.tox/
|
||||
build/
|
||||
|
||||
# UI
|
||||
|
|
|
@ -77,7 +77,7 @@ class Script(object):
|
|||
try:
|
||||
with open(self.filename) as f:
|
||||
code = compile(f.read(), self.filename, 'exec')
|
||||
exec (code, self.ns, self.ns)
|
||||
exec(code, self.ns, self.ns)
|
||||
except Exception:
|
||||
six.reraise(
|
||||
ScriptException,
|
||||
|
|
Loading…
Reference in New Issue