Skip to content

Commit

Permalink
Merge pull request #141 from mauricioabreu/improve-example-usage
Browse files Browse the repository at this point in the history
Handle example usage for Django 1.9
  • Loading branch information
blueyed committed Jan 11, 2016
2 parents 4615e1e + 0a4cae9 commit 4f91fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/patterns.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------------
Expand Down

0 comments on commit 4f91fcc

Please sign in to comment.