diff options
| author | Ondrej Grover <ondrej.grover@gmail.com> | 2014-05-14 14:06:58 +0200 |
|---|---|---|
| committer | Ondrej Grover <ondrej.grover@gmail.com> | 2014-05-14 14:19:52 +0200 |
| commit | 21882fd4a00ffdcee7029d7d5ee5ed355ef34a94 (patch) | |
| tree | 75f91294044e3e93f4a6032f8eee4499a31b40e6 /docs/plugins.rst | |
| parent | d635a347d1a5bb7336edb712356237b141efb4d1 (diff) | |
| download | pelican-21882fd4a00ffdcee7029d7d5ee5ed355ef34a94.tar.gz | |
Fix #1344 move PLUGIN_PATH -> PLUGIN_PATHS
Pelican uses *_PATHS names for settings that represent a list of paths.
Diffstat (limited to 'docs/plugins.rst')
| -rw-r--r-- | docs/plugins.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/plugins.rst b/docs/plugins.rst index 717019a8..a13d9dce 100644 --- a/docs/plugins.rst +++ b/docs/plugins.rst @@ -21,10 +21,10 @@ Alternatively, another method is to import them and add them to the list:: PLUGINS = [myplugin,] If your plugins are not in an importable path, you can specify a list of paths -via the ``PLUGIN_PATH`` setting. As shown in the following example, paths in -the ``PLUGIN_PATH`` list can be absolute or relative to the settings file:: +via the ``PLUGIN_PATHS`` setting. As shown in the following example, paths in +the ``PLUGIN_PATHS`` list can be absolute or relative to the settings file:: - PLUGIN_PATH = ["plugins", "/srv/pelican/plugins"] + PLUGIN_PATHS = ["plugins", "/srv/pelican/plugins"] PLUGINS = ["assets", "liquid_tags", "sitemap"] Where to find plugins |
