Skip to content

Commit

Permalink
doc/man: avoid file builtin to solve build error
Browse files Browse the repository at this point in the history
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 <module>
      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 <[email protected]>
  • Loading branch information
batrick committed Nov 15, 2016
1 parent 238fd2a commit 425cb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion man/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def _get_description(fname, base):
with file(fname) as f:
with open(fname) as f:
one = None
while True:
line = f.readline().rstrip('\n')
Expand Down

0 comments on commit 425cb9f

Please sign in to comment.