diff options
| author | Georg Brandl <georg@python.org> | 2009-03-05 09:21:35 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2009-03-05 09:21:35 +0100 |
| commit | 1ea50bf165f0456df9d2181c366aecca73e96118 (patch) | |
| tree | 4008de659a759540024ae9df13df29acd6fc89ee /sphinx/builders/text.py | |
| parent | aaf084a590dd2abcb6486a4a703e799011d09f08 (diff) | |
| download | sphinx-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.py | 2 |
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 |
