From 4a791b80065ce26795c33c04d5126909f9b0488e Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Sun, 8 Jul 2012 10:30:55 -0400 Subject: [PATCH] Make filestorage available to code that only imports storage. The storage-related tests were relying on this, if nothing else. --- mediagoblin/storage/__init__.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.25.1