summaryrefslogtreecommitdiff
path: root/Documentation/conf.py
diff options
context:
space:
mode:
authorRussell Bryant <russell@ovn.org>2017-07-20 20:23:21 -0400
committerRussell Bryant <russell@ovn.org>2017-07-26 16:31:20 -0400
commit5ca89127382d3b0651383330e616b358a34a0dcf (patch)
tree22979c3473b226afcbe148de4e2be48f534ea482 /Documentation/conf.py
parent9c2f61ee8f4dffe0d8d6e3bd501e1c9d98bb4530 (diff)
downloadopenvswitch-5ca89127382d3b0651383330e616b358a34a0dcf.tar.gz
docs: Refer to correct package name for sphinx theme.
Update the log message emitted when the OVS sphinx theme is not found to reference the name of the package to be installed via pip: ovs-sphinx-theme. Signed-off-by: Russell Bryant <russell@ovn.org> Acked-by: Lance Richardson <lrichard@redhat.com>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r--Documentation/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py
index 77c4df5c0..3621c4867 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -19,7 +19,7 @@ try:
import ovs_sphinx_theme
use_ovs_theme = True
except ImportError:
- print("Cannot find 'ovs_sphinx' package. Falling back to default theme.")
+ print("Cannot find 'ovs-sphinx-theme' package. Falling back to default theme.")
use_ovs_theme = False
# -- General configuration ------------------------------------------------