From 811d8889bf6a49d5eb2f1a833fa26a0d45eec4f2 Mon Sep 17 00:00:00 2001 From: Brook Elgie Date: Fri, 17 Jun 2016 13:04:30 +0100 Subject: [PATCH] [#3120] Remove module var ALLOWED_FIELDSET_PARAMS. ALLOWED_FIELDSET_PARAMS was used in the BaseController, but the method that used it has since been removed. --- ckan/lib/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ckan/lib/base.py b/ckan/lib/base.py index 959053f0e8d..5b0241a4cef 100644 --- a/ckan/lib/base.py +++ b/ckan/lib/base.py @@ -37,8 +37,6 @@ APIKEY_HEADER_NAME_KEY = 'apikey_header_name' APIKEY_HEADER_NAME_DEFAULT = 'X-CKAN-API-Key' -ALLOWED_FIELDSET_PARAMS = ['package_form', 'restrict'] - def abort(status_code=None, detail='', headers=None, comment=None): '''Abort the current request immediately by returning an HTTP exception.