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
1 changed files with 1 additions and 1 deletions

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()