Make ENABLED_MEDDLEWARES a list and not a tuple, so we can modify it
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Thu, 29 Nov 2012 10:27:59 +0000 (11:27 +0100)
committerSebastian Spaeth <Sebastian@SSpaeth.de>
Sat, 1 Dec 2012 19:19:43 +0000 (20:19 +0100)
Plugins may want to insert meddlewares, so this list should be modifiable
at very list (if we don't want to provide helper methods for this, which
seems a tad overkill for now).

This change is required for the upcoming trim_whitespace plugin.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
mediagoblin/meddleware/__init__.py

index fab28f718db427ece3eb1cf3c9f28fa6f3ee0de5..886c9ad9a5916e09ca71ae9c8b9e4916f1e706c4 100644 (file)
@@ -14,9 +14,9 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-ENABLED_MEDDLEWARE = (
+ENABLED_MEDDLEWARE = [
     'mediagoblin.meddleware.csrf:CsrfMeddleware',
-    )
+    ]
 
 
 class BaseMeddleware(object):