aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/storage
diff options
context:
space:
mode:
authorBrett Smith <brettcsmith@brettcsmith.org>2012-07-08 10:30:55 -0400
committerBrett Smith <brettcsmith@brettcsmith.org>2012-07-08 10:30:55 -0400
commit4a791b80065ce26795c33c04d5126909f9b0488e (patch)
tree6bb81bfdc0642de88335ec4003351a76b1d858a1 /mediagoblin/storage
parent766d9ae7bec7f9c2b406734b6e87101abb3b4aee (diff)
downloadmediagoblin-4a791b80065ce26795c33c04d5126909f9b0488e.tar.lz
mediagoblin-4a791b80065ce26795c33c04d5126909f9b0488e.tar.xz
mediagoblin-4a791b80065ce26795c33c04d5126909f9b0488e.zip
Make filestorage available to code that only imports storage.
The storage-related tests were relying on this, if nothing else.
Diffstat (limited to 'mediagoblin/storage')
-rw-r--r--mediagoblin/storage/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mediagoblin/storage/__init__.py b/mediagoblin/storage/__init__.py
index 3df56c2e..2db4c37d 100644
--- a/mediagoblin/storage/__init__.py
+++ b/mediagoblin/storage/__init__.py
@@ -248,3 +248,5 @@ def storage_system_from_config(config_section):
storage_class = common.import_component(storage_class)
return storage_class(**config_params)
+
+import filestorage