summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGinnis <sean.mcginnis@gmail.com>2019-04-10 09:26:44 -0500
committerSean McGinnis <sean.mcginnis@gmail.com>2019-04-10 09:50:37 -0500
commit2bba6767c0b66f4ff541d0ac900da90f57b1e1c1 (patch)
treee7408b16139d1a186d069f7d8337e3c2ce5a3427
parente05f941c719860666e4dc145716875ee77c73273 (diff)
downloadoslo-vmware-2bba6767c0b66f4ff541d0ac900da90f57b1e1c1.tar.gz
Fix doc build error under Python 3
Small fix to switch "print foo" to "print(foo)". Change-Id: Ib49a5e9420a4ab2ab62db2886a78c070ff6c5ba0 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
-rw-r--r--.gitignore1
-rw-r--r--doc/source/conf.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index a4d3e84..f0f970a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,6 +17,7 @@
# Packages
*.egg
+*.eggs
*.egg-info
dist
build
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 7f21752..f696d32 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -52,7 +52,7 @@ if os.path.isfile(PATH) and os.access(PATH, os.R_OK):
if fnmatch.fnmatch(line, '*' + pattern[4:]):
found = True
if not found:
- print line,
+ print(line)
# The suffix of source filenames.
source_suffix = '.rst'