Fix expression

This commit is contained in:
David Duque 2020-04-17 22:16:08 +01:00
parent 2c439abb64
commit 6f76ae68fd
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 1 additions and 1 deletions

View File

@ -4,4 +4,4 @@ from os import system
from sys import argv
# Pass control to the actual script
system(f"management/editconf.py {*argv[1:]}")
system(f"management/editconf.py {' '.join(str(x) for x in argv[:1])}")