Skip to content

Commit

Permalink
Merge pull request #2190 from iksaif/master
Browse files Browse the repository at this point in the history
app_settings: append() doesn't work on tuples
  • Loading branch information
iksaif committed Jan 8, 2018
2 parents bd60ff6 + ca984ea commit 38690cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/graphite/app_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
'tagging',
)
if raven is not None:
INSTALLED_APPS.append('raven.contrib.django.raven_compat')
INSTALLED_APPS = INSTALLED_APPS + ('raven.contrib.django.raven_compat',)


AUTHENTICATION_BACKENDS = ['django.contrib.auth.backends.ModelBackend']
Expand Down

0 comments on commit 38690cb

Please sign in to comment.