未验证 提交 45565f58 编写于 作者: A Ansgar Burchardt

Merge remote-tracking branch 'jrtc27/uploaders-trailing-comma'

See merge request ftp-team/dak!8
......@@ -117,4 +117,7 @@ def fix_maintainer(maintainer):
def split_uploaders(field):
import re
for u in re.sub(">[ ]*,", ">\t", field).split("\t"):
yield u.strip()
u = u.strip()
# Trailing commas will give an empty final uploader
if u:
yield u
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册