summaryrefslogtreecommitdiff
path: root/Documentation/conf.py
diff options
context:
space:
mode:
authorRussell Bryant <russell@ovn.org>2017-07-26 20:30:34 -0400
committerRussell Bryant <russell@ovn.org>2017-07-26 20:32:23 -0400
commitc302537fb428252b8051f0b24dc029a6260bf458 (patch)
tree5b4d99f9a761ed7ea66f55e75dea7cc40d938f98 /Documentation/conf.py
parentfb296f42b762d4597da00a58da04f7de61c71375 (diff)
downloadopenvswitch-c302537fb428252b8051f0b24dc029a6260bf458.tar.gz
Documentation/conf.py: Fix line length.
A previous commit introduced a line that was greater than 79 characters long, causing a flake8 warning to be emitted. Reported-by: Joe Stringer <joe@ovn.org> Fixes: 5ca89127382d ("docs: Refer to correct package name for sphinx theme.") Signed-off-by: Russell Bryant <russell@ovn.org>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r--Documentation/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py
index 3621c4867..108e679d0 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -19,7 +19,8 @@ try:
import ovs_sphinx_theme
use_ovs_theme = True
except ImportError:
- print("Cannot find 'ovs-sphinx-theme' package. Falling back to default theme.")
+ print("Cannot find 'ovs-sphinx-theme' package. "
+ "Falling back to default theme.")
use_ovs_theme = False
# -- General configuration ------------------------------------------------