summaryrefslogtreecommitdiff
path: root/sphinx/builders/text.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-03-05 09:21:35 +0100
committerGeorg Brandl <georg@python.org>2009-03-05 09:21:35 +0100
commit1ea50bf165f0456df9d2181c366aecca73e96118 (patch)
tree4008de659a759540024ae9df13df29acd6fc89ee /sphinx/builders/text.py
parentaaf084a590dd2abcb6486a4a703e799011d09f08 (diff)
downloadsphinx-1ea50bf165f0456df9d2181c366aecca73e96118.tar.gz
Use standard ``file:line: warning: message`` format for warning messages.
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 93737285..8651778c 100644
--- a/sphinx/builders/text.py
+++ b/sphinx/builders/text.py
@@ -64,7 +64,7 @@ class TextBuilder(Builder):
finally:
f.close()
except (IOError, OSError), err:
- self.warn("Error writing file %s: %s" % (outfilename, err))
+ self.warn("error writing file %s: %s" % (outfilename, err))
def finish(self):
pass