Mon, 24 Jun 2019 00:54:24 +0300
fixed prefixed punctuations winding up in the effective categories of subparts
header.py | file | annotate | diff | comparison | revisions |
--- a/header.py Mon Jun 24 00:51:04 2019 +0300 +++ b/header.py Mon Jun 24 00:54:24 2019 +0300 @@ -32,7 +32,11 @@ if self.category: return self.category else: - return self.description.split(' ', 1)[0] + import string + category = self.description.split(' ', 1)[0] + while category and category[0] in string.punctuation: + category = category[1:] + return category class BadHeader: def __init__(self, index, reason):