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>
This commit is contained in:
parent
e05f941c71
commit
2bba6767c0
1
.gitignore
vendored
1
.gitignore
vendored
@ -17,6 +17,7 @@
|
||||
|
||||
# Packages
|
||||
*.egg
|
||||
*.eggs
|
||||
*.egg-info
|
||||
dist
|
||||
build
|
||||
|
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user