diff options
| author | Aurélien Bompard | 2016-06-10 19:55:25 +0200 |
|---|---|---|
| committer | Barry Warsaw | 2016-07-12 19:06:19 -0400 |
| commit | fdc9519917a7977e73225e3e5a66e2f0538e592c (patch) | |
| tree | b04f510f56a3e96fad6e4a62e606ed5f9f7a61f1 /src/mailman/rest/wsgiapp.py | |
| parent | 0e37e111c1d2e83d37743d124628e65eb56a8b5a (diff) | |
| download | mailman-fdc9519917a7977e73225e3e5a66e2f0538e592c.tar.gz mailman-fdc9519917a7977e73225e3e5a66e2f0538e592c.tar.zst mailman-fdc9519917a7977e73225e3e5a66e2f0538e592c.zip | |
Diffstat (limited to 'src/mailman/rest/wsgiapp.py')
| -rw-r--r-- | src/mailman/rest/wsgiapp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mailman/rest/wsgiapp.py b/src/mailman/rest/wsgiapp.py index 0aedff839..bfe17af73 100644 --- a/src/mailman/rest/wsgiapp.py +++ b/src/mailman/rest/wsgiapp.py @@ -200,6 +200,8 @@ class RootedAPI(API): # Let Falcon parse the form data into the request object's # .params attribute. self.req_options.auto_parse_form_urlencoded = True + # Don't ignore empty query parameters. + self.req_options.keep_blank_qs_values = True # Override the base class implementation to wrap a transactional # handler around the call, so that the current transaction is |
