diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-30 14:39:21 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-30 14:39:21 -0500 |
| commit | b70bdb66029f04026d0f5503d8010b60f48d4fa2 (patch) | |
| tree | 864c8a7ce4ccf2700e028cf88d50313aa8082df7 | |
| parent | d463038860c29c8a80db92f2ffdfe804260d6912 (diff) | |
| download | pyramid-b70bdb66029f04026d0f5503d8010b60f48d4fa2.tar.gz pyramid-b70bdb66029f04026d0f5503d8010b60f48d4fa2.tar.bz2 pyramid-b70bdb66029f04026d0f5503d8010b60f48d4fa2.zip | |
fix typo, use config-relative lookup
| -rw-r--r-- | pyramid/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/config.py b/pyramid/config.py index 390df8b34..b52143cb3 100644 --- a/pyramid/config.py +++ b/pyramid/config.py @@ -2118,7 +2118,8 @@ class Configurator(object): .. code-block:: python - add_translations_dirs('/usr/share/locale', 'some.package:locale') + config.add_translation_dirs('/usr/share/locale', + 'some.package:locale') """ for spec in specs: |
