We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 597394a commit 9aee6dfCopy full SHA for 9aee6df
1 file changed
src/hermes_toml/harvest.py
@@ -186,7 +186,7 @@ def handle_person_in_unknown_format(cls, persons):
186
#try to parse the string
187
try:
188
[(name, email)] = getaddresses([person])
189
- return cls.remove_forbidden_keys({"name":name, "email":email})
+ return_list.append(cls.remove_forbidden_keys({"name":name, "email":email}))
190
except ValueError:
191
raise ValueError("Wrong string format for name (and email).")
192
0 commit comments