From: Christopher Allan Webber Date: Sun, 30 Nov 2014 19:49:01 +0000 (-0600) Subject: Oops, got the boolean backwards :P X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5f3703d5453a4190be368704edf944edd205ada1;p=mediagoblin.git Oops, got the boolean backwards :P --- diff --git a/mediagoblin/db/open.py b/mediagoblin/db/open.py index 3f863190..4b4dfa12 100644 --- a/mediagoblin/db/open.py +++ b/mediagoblin/db/open.py @@ -28,7 +28,7 @@ _log = logging.getLogger(__name__) from mediagoblin.tools.transition import DISABLE_GLOBALS -if DISABLE_GLOBALS: +if not DISABLE_GLOBALS: from mediagoblin.db.base import Session class DatabaseMaster(object):