mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-09 05:04:54 +00:00
Merge pull request #769 from aleprovencio/whitespace
Fix whitespace around operator
This commit is contained in:
commit
bf69bfe40e
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ INTERNAL_IPS = ['127.0.0.1', '10.0.2.2', ]
|
|||
# tricks to have debug toolbar when developing with docker
|
||||
if os.environ.get('USE_DOCKER') == 'yes':
|
||||
ip = socket.gethostbyname(socket.gethostname())
|
||||
INTERNAL_IPS += [ip[:-1]+"1"]
|
||||
INTERNAL_IPS += [ip[:-1] + "1"]
|
||||
|
||||
DEBUG_TOOLBAR_CONFIG = {
|
||||
'DISABLE_PANELS': [
|
||||
|
|
|
|||
Loading…
Reference in a new issue