Mercurial > p > roundup > code
diff roundup/mailgw.py @ 6127:80915fd9ad24
Fix broken import
apparently when running run_test.py in my directory
from exceptions
somehow works but not when run in CI.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 03 Apr 2020 18:31:35 -0400 |
| parents | c177e7128dc9 |
| children | ca0915457761 |
line wrap: on
line diff
--- a/roundup/mailgw.py Fri Apr 03 18:20:17 2020 -0400 +++ b/roundup/mailgw.py Fri Apr 03 18:31:35 2020 -0400 @@ -118,7 +118,7 @@ except ImportError: gpg = None -from exceptions import RoundupException +from roundup.exceptions import RoundupException SENDMAILDEBUG = os.environ.get('SENDMAILDEBUG', '')
