diff options
| author | Tom Christie | 2013-05-18 03:40:38 -0700 |
|---|---|---|
| committer | Tom Christie | 2013-05-18 03:40:38 -0700 |
| commit | 2a3056d03844a31373f1e30aec58e70616115838 (patch) | |
| tree | cba883fb5d4ab131a8ac00de4b1ee6dbd65ddacb /rest_framework/runtests/settings.py | |
| parent | 9fe6a103ec8d43eded7089f7d0c75a49ca45bb3b (diff) | |
| parent | ed0bd195f58ae6c0502f9c54cbd34681875adb14 (diff) | |
| download | django-rest-framework-2a3056d03844a31373f1e30aec58e70616115838.tar.bz2 | |
Merge pull request #851 from linovia/master
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'), ) |
