summaryrefslogtreecommitdiff
path: root/sphinx/builders/text.py
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@gmail.com>2014-01-19 14:17:10 +0400
committerDmitry Shachnev <mitya57@gmail.com>2014-01-19 14:17:10 +0400
commitce2185ce279664e54ba22b14663091abc5a3a8f2 (patch)
tree97b00b55be0e28a73399acc0f80e21e6a4e24b28 /sphinx/builders/text.py
parentfa9695dbe0b090eb9907647b7a8d1c20210efa5b (diff)
downloadsphinx-git-ce2185ce279664e54ba22b14663091abc5a3a8f2.tar.gz
Modernize the code now that Python 2.5 is no longer supported
- Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
Diffstat (limited to 'sphinx/builders/text.py')
-rw-r--r--sphinx/builders/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/text.py b/sphinx/builders/text.py
index f09ad6541..b0704def3 100644
--- a/sphinx/builders/text.py
+++ b/sphinx/builders/text.py
@@ -65,7 +65,7 @@ class TextBuilder(Builder):
f.write(self.writer.output)
finally:
f.close()
- except (IOError, OSError), err:
+ except (IOError, OSError) as err:
self.warn("error writing file %s: %s" % (outfilename, err))
def finish(self):