diff options
| author | Georg Brandl <georg@python.org> | 2010-01-06 15:54:34 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-01-06 15:54:34 +0100 |
| commit | 818b990fcd3fbcfddb5d8fb84e5f23ffc75ed1ed (patch) | |
| tree | cb312b53cf7ae2673b99ac2418955738fed50eed /tests/test_config.py | |
| parent | 995e1df9e1ca485f9b1b690fbb64bfc3d544f563 (diff) | |
| download | sphinx-818b990fcd3fbcfddb5d8fb84e5f23ffc75ed1ed.tar.gz | |
Remove the deprecated ``exclude_dirs`` config value.
Diffstat (limited to 'tests/test_config.py')
| -rw-r--r-- | tests/test_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 76f7920b..b1c50f70 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -30,8 +30,8 @@ def test_core_config(app): assert cfg.latex_elements['docclass'] == 'scrartcl' # simple default values - assert 'exclude_dirs' not in cfg.__dict__ - assert cfg.exclude_dirs == [] + assert 'locale_dirs' not in cfg.__dict__ + assert cfg.locale_dirs == [] assert cfg.show_authors == False # complex default values |
