diff options
Diffstat (limited to 'mediagoblin/app.py')
-rw-r--r-- | mediagoblin/app.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mediagoblin/app.py b/mediagoblin/app.py index 6923e198..8027ad87 100644 --- a/mediagoblin/app.py +++ b/mediagoblin/app.py @@ -93,7 +93,9 @@ class MediaGoblinApp(object): self.db = setup_database(app_config['run_migrations']) # Quit app if need to run dbupdate - check_db_up_to_date() + ## NOTE: This is currently commented out due to session errors.. + ## We'd like to re-enable! + # check_db_up_to_date() # Register themes self.theme_registry, self.current_theme = register_themes(app_config) |