[Python-checkins] r58942 - python/trunk/Lib/calendar.py
walter.doerwald
python-checkins at python.org
Mon Nov 12 11:01:34 CET 2007
Author: walter.doerwald
Date: Mon Nov 12 11:01:33 2007
New Revision: 58942
Modified:
python/trunk/Lib/calendar.py
Log:
Fix TextCalendar.prweek(). This closes issue #1427.
Modified: python/trunk/Lib/calendar.py
==============================================================================
--- python/trunk/Lib/calendar.py (original)
+++ python/trunk/Lib/calendar.py Mon Nov 12 11:01:33 2007
@@ -263,7 +263,7 @@
"""
Print a single week (no newline).
"""
- print self.week(theweek, width),
+ print self.formatweek(theweek, width),
def formatday(self, day, weekday, width):
"""
More information about the Python-checkins
mailing list