Skip to content

Commit 7e2aeee

Browse files
author
walter.doerwald
committed
Fix TextCalendar.prweek(). This closes issue #1427.
git-svn-id: http://svn.python.org/projects/python/trunk@58942 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 033bbd8 commit 7e2aeee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/calendar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def prweek(self, theweek, width):
263263
"""
264264
Print a single week (no newline).
265265
"""
266-
print self.week(theweek, width),
266+
print self.formatweek(theweek, width),
267267

268268
def formatday(self, day, weekday, width):
269269
"""

0 commit comments

Comments
 (0)