1
0
mirror of https://github.com/minoplhy/filters-maker.git synced 2024-12-22 10:08:11 +00:00

version : fix string join

This commit is contained in:
minoplhy 2021-11-15 11:02:38 +07:00
parent f3a823e5fc
commit 8e558965b8
Signed by: minoplhy
GPG Key ID: 90667A59A9908AEC

View File

@ -7,5 +7,5 @@ date = datetime.datetime.now(UTC)
def build(incoming, addition=""):
with open(incoming, 'w') as f:
f.write('\n'.join([str(date)]+str(addition)))
f.write('\n'.join([str(date)+str(addition)]))
f.close()