diff options
Diffstat (limited to 'test/testdata/fake_converter.py')
-rw-r--r-- | test/testdata/fake_converter.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/testdata/fake_converter.py b/test/testdata/fake_converter.py index bd049bc..ab27064 100644 --- a/test/testdata/fake_converter.py +++ b/test/testdata/fake_converter.py @@ -18,12 +18,12 @@ time.sleep(0.5) RANGE = 5 for i in range(RANGE): print(json.dumps({ - 'filename': filename, - 'output': output, - 'duration': RANGE, - 'progress': i, - 'eta': RANGE - i - })) + 'filename': filename, + 'output': output, + 'duration': RANGE, + 'progress': i, + 'eta': RANGE - i + })) time.sleep(0.1) with file(output, 'w') as f: |