aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoar Wandborg <git@wandborg.com>2011-09-14 02:08:01 +0200
committerJoar Wandborg <git@wandborg.com>2011-09-14 02:08:01 +0200
commitfd10c71644f12b0a56247c782566af1c37df5851 (patch)
tree46c4e80b1c3417e84dcac4857402674b77919c66
parenta2468d18ca39afed9102d707e7aea6a613ff2dab (diff)
downloadmediagoblin-fd10c71644f12b0a56247c782566af1c37df5851.tar.lz
mediagoblin-fd10c71644f12b0a56247c782566af1c37df5851.tar.xz
mediagoblin-fd10c71644f12b0a56247c782566af1c37df5851.zip
Fixed ./bin/gmg. import_export would not find BasicFileStorage, and ./bin/gmg would throw an error no matter what command you tried to run.
-rw-r--r--mediagoblin/gmg_commands/import_export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/gmg_commands/import_export.py b/mediagoblin/gmg_commands/import_export.py
index fc5c88a8..05edbfc8 100644
--- a/mediagoblin/gmg_commands/import_export.py
+++ b/mediagoblin/gmg_commands/import_export.py
@@ -17,7 +17,7 @@
from mediagoblin import mg_globals
from mediagoblin.db.open import setup_connection_and_db_from_config
from mediagoblin.init.config import read_mediagoblin_config
-from mediagoblin.storage import BasicFileStorage
+from mediagoblin.storage.filestorage import BasicFileStorage
from mediagoblin.init import setup_storage, setup_global_and_app_config
import shutil