Merge pull request #31 from tsouvarev/fix-links-in-docs

Fix links in docs
This commit is contained in:
Thomas Grainger 2016-03-01 09:43:14 +00:00
commit 42493cb708
2 changed files with 6 additions and 6 deletions

View File

@ -344,7 +344,7 @@ would render **10E5**.
.. _Babel: http://babel.pocoo.org/
.. _Django: https://www.djangoproject.com/
.. _wrapper scripts: https://docs.djangoproject.com/en/dev/topics/i18n/translation/#localization-how-to-create-language-files
.. _Distutils/Setuptools Integration: http://babel.pocoo.org/docs/setup/
.. _Date Formatting: http://babel.pocoo.org/docs/dates/
.. _Number Formatting: http://babel.pocoo.org/docs/numbers/
.. _Locale: http://babel.pocoo.org/docs/api/core/#babel.core.Locale
.. _Distutils/Setuptools Integration: http://babel.pocoo.org/en/stable/setup.html
.. _Date Formatting: http://babel.pocoo.org/en/stable/dates.html
.. _Number Formatting: http://babel.pocoo.org/en/stable/numbers.html
.. _Locale: http://babel.pocoo.org/en/stable/api/core.html#babel.core.Locale

View File

@ -16,8 +16,8 @@ _thread_locals = local()
def get_current_locale():
"""Get current locale data outside views.
See http://babel.pocoo.org/docs/api/core/#babel.core.Locale for Locale
objects documentation
See http://babel.pocoo.org/en/stable/api/core.html#babel.core.Locale
for Locale objects documentation
"""
return getattr(_thread_locals, 'locale', None)