From 0b703b40b29dbc6a57952b94f124126deebb8427 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Tue, 5 Feb 2019 11:04:34 +0100 Subject: [PATCH] DEBUG => TIRAMISU_DEBUG --- tiramisu/storage/dictionary/value.py | 2 +- tiramisu/storage/sqlite3/value.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tiramisu/storage/dictionary/value.py b/tiramisu/storage/dictionary/value.py index 7a29260..91fabc5 100644 --- a/tiramisu/storage/dictionary/value.py +++ b/tiramisu/storage/dictionary/value.py @@ -20,7 +20,7 @@ from ..util import Cache from ...setting import undefined from ...i18n import _ -DEBUG = bool(os.environ.get('DEBUG', False)) +DEBUG = bool(os.environ.get('TIRAMISU_DEBUG', False)) del os diff --git a/tiramisu/storage/sqlite3/value.py b/tiramisu/storage/sqlite3/value.py index 68678a2..126d7c1 100644 --- a/tiramisu/storage/sqlite3/value.py +++ b/tiramisu/storage/sqlite3/value.py @@ -23,7 +23,7 @@ from ...setting import undefined, owners from ...i18n import _ -DEBUG = bool(os.environ.get('DEBUG', False)) +DEBUG = bool(os.environ.get('TIRAMISU_DEBUG', False)) del os