diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-07-18 19:47:03 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-07-18 19:47:03 (GMT) |
commit | 46361b7017fbbbc5f560eea54aac2be86abaf90e (patch) | |
tree | 6409d19be4f75548825a856ab0a7bd9921ad4996 /doc/translator.py | |
parent | e6e861e83b8a05b894b84775f0fc115614d6f229 (diff) | |
download | Doxygen-46361b7017fbbbc5f560eea54aac2be86abaf90e.zip Doxygen-46361b7017fbbbc5f560eea54aac2be86abaf90e.tar.gz Doxygen-46361b7017fbbbc5f560eea54aac2be86abaf90e.tar.bz2 |
Release-1.3.7-20040718
Diffstat (limited to 'doc/translator.py')
-rw-r--r-- | doc/translator.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/translator.py b/doc/translator.py index c3527a8..b2da2a6 100644 --- a/doc/translator.py +++ b/doc/translator.py @@ -42,6 +42,7 @@ 2004/04/16 - Added new tokens to the tokenizer (to remove some warnings). 2004/05/25 - Added from __future__ import generators not to force Python 2.3. 2004/06/03 - Removed dependency on textwrap module. + 2004/07/07 - Fixed the bug in the fill() function. """ from __future__ import generators @@ -70,7 +71,7 @@ def fill(s): else: lines.append(line) # another full line formed line = word # next line started - + lines.append(line) # the last line return '\n'.join(lines) @@ -1390,7 +1391,7 @@ class TrManager: alphabetically). This means that they derive from the Translator class and they implement all %d of the required methods. Anyway, there still may be some details listed even - for them. Please, see the details for them:''' + for them:''' s = s % len(self.requiredMethodsDic) f.write('-' * 70 + '\n') f.write(fill(s) + '\n\n') |