~heckyel/librevideoconverter

ff4bb5f5678ac82600a9341aa8128f05c5e6173a — Jesús 4 years ago d0f6449
reorganize file variable
1 files changed, 2 insertions(+), 1 deletions(-)

M test/testdata/fake_converter.py
M test/testdata/fake_converter.py => test/testdata/fake_converter.py +2 -1
@@ 26,6 26,7 @@ for i in range(RANGE):
            }))
    time.sleep(0.1)

with file(output, 'w') as f:
file = open(output, 'w')
with file as f:
    f.write('blank')
print(json.dumps({'finished': True}))