2013-08-21 02:27:32 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2020-04-17 18:16:31 +00:00
|
|
|
from os import system
|
|
|
|
from sys import argv
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2020-04-17 17:54:13 +00:00
|
|
|
# Pass control to the actual script
|
2020-04-17 21:21:06 +00:00
|
|
|
system(f"management/editconf.py {' '.join(str(x) for x in argv[1:])}")
|