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