summaryrefslogtreecommitdiff
path: root/src/options.py
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-12-07 18:55:10 +0000
committerdavidovski <david@davidovski.xyz>2021-12-07 18:55:10 +0000
commitc7eb41091b9df6f08dbcaed38deca354fb797d50 (patch)
treed4db02ab6d2ef5295a34328fd66f26a2dbf8597e /src/options.py
parent77b06090f69264bcc93911664bea2810cd4571ba (diff)
added update command
Diffstat (limited to 'src/options.py')
-rw-r--r--src/options.py2
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:]: