Merge pull request #141 from mauricioabreu/improve-example-usage

Handle example usage for Django 1.9
This commit is contained in:
Daniel Hahler 2016-01-12 00:14:19 +01:00
commit 4f91fcc6a7

View file

@ -54,7 +54,7 @@ setting other values, e.g.::
@property
def LANGUAGES(self):
return Configuration.LANGUAGES + (('tlh', 'Klingon'),)
return list(Configuration.LANGUAGES) + [('tlh', 'Klingon')]
Configuration mixins
--------------------