From 1fbef08402146a939b9678c7b25e9de224bc36f1 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Tue, 5 Feb 2019 10:33:56 +0100 Subject: [PATCH] DEBUG => TIRAMISU_DEBUG --- tiramisu/storage/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiramisu/storage/util.py b/tiramisu/storage/util.py index 50f24e5..f3bdeb3 100644 --- a/tiramisu/storage/util.py +++ b/tiramisu/storage/util.py @@ -23,7 +23,7 @@ from .cache.dictionary import Cache as DictCache def _display_classname(obj): return(obj.__class__.__name__.lower()) -DEBUG = bool(os.environ.get('DEBUG', False)) +DEBUG = bool(os.environ.get('TIRAMISU_DEBUG', False)) del os