Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 6125:38fbfbb24cbd
Fix missing import
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 03 Apr 2020 16:31:48 -0400 |
| parents | c177e7128dc9 |
| children | edbd4bba728a |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Fri Apr 03 16:22:49 2020 -0400 +++ b/roundup/cgi/templating.py Fri Apr 03 16:31:48 2020 -0400 @@ -60,6 +60,8 @@ except ImportError: from itertools import izip_longest as zip_longest +from roundup.exceptions import RoundupException + def _import_markdown2(): try: import markdown2, re
