From 425cb9fbe1bce0bbe333378600bc5275b6abbb8c Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 14 Nov 2016 22:46:23 -0500 Subject: doc/man: avoid file builtin to solve build error Sphinx running with Python 3.X fails: # Sphinx version: 1.4.8 # Python version: 3.5.2 (CPython) # Docutils version: 0.12 release # Jinja2 version: 2.8 # Last messages: # Loaded extensions: Traceback (most recent call last): File "/usr/lib/python3.5/site-packages/sphinx/cmdline.py", line 243, in main opts.warningiserror, opts.tags, opts.verbosity, opts.jobs) File "/usr/lib/python3.5/site-packages/sphinx/application.py", line 137, in __init__ confoverrides or {}, self.tags) File "/usr/lib/python3.5/site-packages/sphinx/config.py", line 287, in __init__ execfile_(filename, config) File "/usr/lib/python3.5/site-packages/sphinx/util/pycompat.py", line 130, in execfile_ exec_(code, _globals) File "conf.py", line 56, in File "conf.py", line 47, in _get_manpages File "conf.py", line 12, in _get_description NameError: name 'file' is not defined Signed-off-by: Patrick Donnelly --- man/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/conf.py b/man/conf.py index 2b24223b12d..67d371e6750 100644 --- a/man/conf.py +++ b/man/conf.py @@ -9,7 +9,7 @@ exclude_patterns = ['**/.#*', '**/*~'] def _get_description(fname, base): - with file(fname) as f: + with open(fname) as f: one = None while True: line = f.readline().rstrip('\n') -- cgit v1.2.3