#285: make the `locale_dirs` config value work again.

This commit is contained in:
Georg Brandl 2010-01-02 00:39:55 +01:00
parent 2af4986e78
commit 297b2c7663
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
Release 0.6.4 (in development) Release 0.6.4 (in development)
============================== ==============================
* #285: make the ``locale_dirs`` config value work again.
* #303: ``html_context`` values given on the command line via ``-A`` * #303: ``html_context`` values given on the command line via ``-A``
should not override other values given in conf.py. should not override other values given in conf.py.

View File

@ -186,7 +186,7 @@ class Builder(object):
if self.translator is None: if self.translator is None:
self.translator = trans self.translator = trans
else: else:
self.translator._catalog.update(trans.catalog) self.translator._catalog.update(trans._catalog)
except Exception: except Exception:
# Language couldn't be found in the specified path # Language couldn't be found in the specified path
pass pass