提交 d287543c 编写于 作者: S Shinwell Hu

drop tags which dont start with a number

上级 e645ad02
......@@ -51,6 +51,8 @@ def clean_tags(tags, info):
seperator_regex = re.compile(info["seperator"])
result_list = [seperator_regex.sub(".", x) for x in result_list]
result_list = [x for x in result_list if x[0].isdigit()]
return result_list
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册