2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 22:35:15 +00:00

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>
This commit is contained in:
Russell Bryant
2017-07-20 20:23:21 -04:00
parent 9c2f61ee8f
commit 5ca8912738

View File

@@ -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 ------------------------------------------------