From: Anthony Baxter Date: Fri, 7 Apr 2006 05:41:13 +0000 (+0000) Subject: missing 'self' from TextCalendar.prweek. X-Git-Tag: v2.5a2~397 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7846f4d365c4d1564b4fe46ec8728f7473536ff7;p=thirdparty%2FPython%2Fcpython.git missing 'self' from TextCalendar.prweek. --- diff --git a/Lib/calendar.py b/Lib/calendar.py index 723bb3c8d492..db7b2b63fd29 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -256,7 +256,7 @@ class TextCalendar(Calendar): similar to the UNIX program cal. """ - def prweek(theweek, width): + def prweek(self, theweek, width): """ Print a single week (no newline). """