diff options
| author | Florian Fuchs | 2013-03-20 17:50:49 -0700 |
|---|---|---|
| committer | Florian Fuchs | 2013-03-20 17:50:49 -0700 |
| commit | 444a4705f3eb52bd90869aca3a9a419d2a8a7994 (patch) | |
| tree | aa71f017b5eababc757c4216cdcf72e696ff17a3 /src/mailman/rest/helpers.py | |
| parent | 0b632f9d5b87897b94edeb4dc2c0a06c2bd0162d (diff) | |
| download | mailman-444a4705f3eb52bd90869aca3a9a419d2a8a7994.tar.gz mailman-444a4705f3eb52bd90869aca3a9a419d2a8a7994.tar.zst mailman-444a4705f3eb52bd90869aca3a9a419d2a8a7994.zip | |
Diffstat (limited to 'src/mailman/rest/helpers.py')
| -rw-r--r-- | src/mailman/rest/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/rest/helpers.py b/src/mailman/rest/helpers.py index 57026d40a..7cacc2e6c 100644 --- a/src/mailman/rest/helpers.py +++ b/src/mailman/rest/helpers.py @@ -127,7 +127,7 @@ def paginate(default_count=None): try: count = int(request.GET['count']) page = int(request.GET['page']) - # Wrong parameter types or not GET attributer in GET request. + # Wrong parameter types or no GET attribute in request object. except (AttributeError, ValueError, TypeError): return http.bad_request([], b'Invalid parameters') # No count/page params: Use defaults. |
