Mercurial > p > roundup > code
diff roundup/actions.py @ 5071:a7541077cf12
Remove 'import *' statement from actions.py
There are various 'import *' statements scattered through the code which
are generally not a good thing. These should be fairly safe changes, but
I'll commit them one file at a time to make it easier to track down
issues with a bisect if they crop up later.
| author | John Kristensen <john@jerrykan.com> |
|---|---|
| date | Fri, 10 Jun 2016 17:01:29 +1000 |
| parents | 13b3155869e0 |
| children | ed02a1e0aa5d |
line wrap: on
line diff
--- a/roundup/actions.py Sun Jun 05 20:58:01 2016 -0400 +++ b/roundup/actions.py Fri Jun 10 17:01:29 2016 +1000 @@ -4,7 +4,7 @@ # For license terms see the file COPYING.txt. # -from roundup.exceptions import * +from roundup.exceptions import Unauthorised from roundup import hyperdb from roundup.i18n import _
