Merge branch 'release/0.2.8.3'
* release/0.2.8.3: bump version fix handling of country specific locales
This commit is contained in:
commit
babc028897
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ class BaseController(WSGIController):
|
|||
# set language environment
|
||||
for lang in request.languages:
|
||||
try:
|
||||
add_fallback(lang)
|
||||
add_fallback(lang.replace('-', '_'))
|
||||
except:
|
||||
pass
|
||||
c.messages = {'errors': [], 'messages': []}
|
||||
|
|
2
setup.py
2
setup.py
|
@ -29,7 +29,7 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='ddportfolioservice',
|
||||
version='0.2.8.2',
|
||||
version='0.2.8.3',
|
||||
description='service to create DDPortfolio URLs',
|
||||
long_description="""This is a service implementation that
|
||||
returns a set of personalized URLs as outlined in
|
||||
|
|
Loading…
Reference in a new issue