This commit is contained in:
ed 2025-08-17 15:56:56 +00:00
parent b2fb0c26ad
commit 377f7732de
2 changed files with 2 additions and 2 deletions

View file

@ -439,7 +439,7 @@ def args_from_cfg(cfg_path: str) -> list[str]:
def expand_cfg(argv) -> list[str]:
if CFG_DEF:
supp = args_from_cfg(CFG_DEF[0])
argv = supp + argv
argv = argv[:1] + supp + argv[1:]
n = 0
while n < len(argv):

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (1, 19, 3)
VERSION = (1, 19, 4)
CODENAME = "usernames"
BUILD_DT = (2025, 8, 17)