Typo in utils.parse_docstring, 'multiple_items' -> 'var_items'

This commit is contained in:
jesopo 2018-10-28 11:53:44 +00:00
parent 5553ac9e49
commit 50e7aa40b9

View file

@ -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]