Fix issue with wrapper logic

This commit is contained in:
Keyan Pishdadian 2015-02-11 15:22:07 -05:00
parent 0cf5881312
commit 37217e85b8

View file

@ -89,4 +89,6 @@ def fix(ast):
if __name__ == "__main__":
input_file = sys.argv[1]
fix(input_file)
ast = read_source(input_file)
ast = fix_imports(ast)
write_source(ast, input_file)