Mercurial > p > roundup > code
diff roundup/scripts/roundup_server.py @ 5266:e9158c0a6eba
Python 2 and 3 support. Convert Exception to BaseException scripts.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 04 Sep 2017 21:58:50 -0400 |
| parents | 198b6e810c67 |
| children | 5017c3422334 |
line wrap: on
line diff
--- a/roundup/scripts/roundup_server.py Mon Sep 04 21:58:16 2017 -0400 +++ b/roundup/scripts/roundup_server.py Mon Sep 04 21:58:50 2017 -0400 @@ -698,7 +698,7 @@ # allow the win32 import win32service - class SvcShutdown(Exception): + class SvcShutdown(BaseException): pass class RoundupService(win32serviceutil.ServiceFramework):
