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:
Sean McGinnis 2019-04-10 09:26:44 -05:00
parent e05f941c71
commit 2bba6767c0
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -17,6 +17,7 @@
# Packages
*.egg
*.eggs
*.egg-info
dist
build

View File

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