From 3698e494a1043575768cacfb0c8a3b24165dafcd Mon Sep 17 00:00:00 2001 From: yackob03 Date: Mon, 4 Nov 2013 16:14:37 -0500 Subject: [PATCH] Clean up an old TODO. --- storage/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/storage/__init__.py b/storage/__init__.py index 8c0efab31..de86f4be4 100644 --- a/storage/__init__.py +++ b/storage/__init__.py @@ -130,10 +130,7 @@ def load(kind=None): """Returns the right storage class according to the configuration.""" global _storage - # TODO hard code to local for now kind = app.config['STORAGE_KIND'] - # if not kind: - # kind = cfg.storage.lower() if kind in _storage: return _storage[kind] if kind == 's3':