diff options
| author | Marc-Olivier Titeux | 2013-10-17 12:09:38 +0200 |
|---|---|---|
| committer | Marc-Olivier Titeux | 2013-10-17 12:09:38 +0200 |
| commit | 30ade865a512ed406459ba0ae6f4fea3d9208e03 (patch) | |
| tree | 05783844f054e004e593f9acdf4913a60c7eb849 /brevisurl/settings.py | |
| parent | caeec4dd60567a79c8e3a338e5b5a8a4079a3056 (diff) | |
| download | django-brevisurl-30ade865a512ed406459ba0ae6f4fea3d9208e03.tar.bz2 | |
Settings from global and migrations
Diffstat (limited to 'brevisurl/settings.py')
| -rw-r--r-- | brevisurl/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/brevisurl/settings.py b/brevisurl/settings.py index a1cb0a8..6a3e0c9 100644 --- a/brevisurl/settings.py +++ b/brevisurl/settings.py @@ -15,7 +15,7 @@ LOCAL_BACKEND_TOKEN_CHARS = getattr(settings, 'BREVISURL_LOCAL_BACKEND_TOKEN_CHA # Settings for token length. LOCAL_BACKEND_TOKEN_LENGTH = getattr(settings, 'BREVISURL_LOCAL_BACKEND_TOKEN_LENGTH', 5) -LOCAL_BACKEND_ORIGINAL_URL_MAX_LENGTH = 200 +LOCAL_BACKEND_ORIGINAL_URL_MAX_LENGTH = getattr(settings, 'BREVISURL_LOCAL_BACKEND_TOKEN_LENGTH', 200) # Settings for url pattern. LOCAL_BACKEND_URL_PATTERN = getattr(settings, 'BREVISURL_LOCAL_BACKEND_URL_PATTERN', |
