Mercurial > p > roundup > code
changeset 8409:c9bec888c3c8
refactor! move RateLimitExceeded to roundup.cgi.exceptions - test
forgot to commit the change to the test as well
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 10 Aug 2025 22:04:03 -0400 |
| parents | e882a5d52ae5 |
| children | fd72487d0054 |
| files | test/test_actions.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/test/test_actions.py Sun Aug 10 21:27:06 2025 -0400 +++ b/test/test_actions.py Sun Aug 10 22:04:03 2025 -0400 @@ -5,8 +5,8 @@ from roundup.date import Date, Interval from roundup.cgi.actions import * from roundup.cgi.client import add_message -from roundup.cgi.exceptions import Redirect, Unauthorised, SeriousError, FormError -from roundup.exceptions import RateLimitExceeded, Reject +from roundup.cgi.exceptions import RateLimitExceeded, Redirect, Unauthorised, SeriousError, FormError +from roundup.exceptions import Reject from roundup.anypy.cgi_ import FieldStorage, MiniFieldStorage from roundup.anypy.cmp_ import NoneAndDictComparable
