diff options
| author | Xavier Ordoquy | 2013-05-18 12:07:44 +0200 |
|---|---|---|
| committer | Xavier Ordoquy | 2013-05-18 12:07:44 +0200 |
| commit | ed0bd195f58ae6c0502f9c54cbd34681875adb14 (patch) | |
| tree | 97b5244a6bb29f4c771db0b34790bc7b0dd986aa /rest_framework/runtests/settings.py | |
| parent | b950b025bc66e3018d5f74e1494ff17f7742be75 (diff) | |
| download | django-rest-framework-ed0bd195f58ae6c0502f9c54cbd34681875adb14.tar.bz2 | |
Updated the dependencies version and added the ALLOWED_HOSTS for tests.
Diffstat (limited to 'rest_framework/runtests/settings.py')
| -rw-r--r-- | rest_framework/runtests/settings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rest_framework/runtests/settings.py b/rest_framework/runtests/settings.py index 9b519f27..9dd7b545 100644 --- a/rest_framework/runtests/settings.py +++ b/rest_framework/runtests/settings.py @@ -4,6 +4,8 @@ DEBUG = True TEMPLATE_DEBUG = DEBUG DEBUG_PROPAGATE_EXCEPTIONS = True +ALLOWED_HOSTS = ['*'] + ADMINS = ( # ('Your Name', 'your_email@domain.com'), ) |
