DEBUG => TIRAMISU_DEBUG

This commit is contained in:
Emmanuel Garette 2019-02-05 10:33:56 +01:00
parent 26fa923139
commit 1fbef08402
1 changed files with 1 additions and 1 deletions

View File

@ -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