aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-28 11:53:44 +0000
committerGravatar jesopo2018-10-28 11:53:44 +0000
commit50e7aa40b96e951f379595577eecb9b66b90a5b6 (patch)
tree6990a22e7f9d54d8642c158af9e11fb7c06caf49 /src
parentTypo in modules/command.py, 'is' -> 'if' (diff)
signature
Typo in utils.parse_docstring, 'multiple_items' -> 'var_items'
Diffstat (limited to 'src')
-rw-r--r--src/utils/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/__init__.py b/src/utils/__init__.py
index f2e1355c..87671108 100644
--- a/src/utils/__init__.py
+++ b/src/utils/__init__.py
@@ -197,7 +197,7 @@ def parse_docstring(s):
key, _, value = line[1:].partition(": ")
last_item = key
- if key in multiple_items:
+ if key in var_items:
var_items[key].append(value)
elif key in items:
var_items[key] = [items.pop(key), value]