Mercurial > p > roundup > code
diff roundup/mailgw.py @ 7300:57f34b0b912c
flake8 fixes
move import to top, indentation, remove trailing whitespace ...
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 07 May 2023 09:10:10 -0400 |
| parents | 86862ed039fa |
| children | 14c7c07b32d8 |
line wrap: on
line diff
--- a/roundup/mailgw.py Thu May 04 20:57:38 2023 -0400 +++ b/roundup/mailgw.py Sun May 07 09:10:10 2023 -0400 @@ -637,7 +637,7 @@ # Check if the subject includes a prefix self.has_prefix = re.search(r'^%s\s*(\w+)\s*%s' % (delim_open, - delim_close), + delim_close), tmpsubject.strip()) # Match the classname if specified
