diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-13 15:35:59 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-13 15:35:59 +0100 |
commit | b8447825ac4f9da4f9ebef45bd15a26b8b7d17e3 (patch) | |
tree | 1d1ab1d575a89382e726bd73adbc93371e804ed5 /test/functional/util/merge_coveralls.py | |
parent | 96385ea4e61156443e163b214726bb0933e887b0 (diff) | |
download | rspamd-b8447825ac4f9da4f9ebef45bd15a26b8b7d17e3.tar.gz rspamd-b8447825ac4f9da4f9ebef45bd15a26b8b7d17e3.zip |
[Minor] Python...
Diffstat (limited to 'test/functional/util/merge_coveralls.py')
-rwxr-xr-x | test/functional/util/merge_coveralls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/util/merge_coveralls.py b/test/functional/util/merge_coveralls.py index ddc18690d..e1498ac01 100755 --- a/test/functional/util/merge_coveralls.py +++ b/test/functional/util/merge_coveralls.py @@ -138,7 +138,7 @@ if __name__ == '__main__': elif 'DRONE' in os.environ and os.environ['DRONE']: j1['service_name'] = 'drone' - j1['source_files'] = files.values() + j1['source_files'] = list(files.values()) with open(args.output, 'w') as f: f.write(json.dumps(j1)) |