Move all settings files from <app>/conf/settings.py to <app>/settings.py

This commit is contained in:
Roberto Rosario
2014-09-11 05:02:40 -04:00
parent c8d1b7bed7
commit b761037d99
75 changed files with 107 additions and 107 deletions

View File

@@ -0,0 +1,5 @@
from django.conf import settings
DEFAULT_LOCK_TIMEOUT_VALUE = 30
DEFAULT_LOCK_TIMEOUT = getattr(settings, 'LOCK_MANAGER_DEFAULT_LOCK_TIMEOUT', DEFAULT_LOCK_TIMEOUT_VALUE)