diff options
author | davidovski <david@davidovski.xyz> | 2021-12-07 18:55:10 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-12-07 18:55:10 +0000 |
commit | c7eb41091b9df6f08dbcaed38deca354fb797d50 (patch) | |
tree | d4db02ab6d2ef5295a34328fd66f26a2dbf8597e /src/options.py | |
parent | 77b06090f69264bcc93911664bea2810cd4571ba (diff) |
added update command
Diffstat (limited to 'src/options.py')
-rw-r--r-- | src/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.py b/src/options.py index 011c039..f3f83d5 100644 --- a/src/options.py +++ b/src/options.py @@ -65,7 +65,7 @@ def parse_args(): # is a named argument with a -- if arg[1] == "-" and len(arg) > 2 and arg[2:].split("=")[0] in names: - option.appen(names[arg[2:].split("=")[0]]) + option.append(names[arg[2:].split("=")[0]]) # is a single letter argument with a - else: for letter in arg[1:]: |