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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7846f4d365c4d1564b4fe46ec8728f7473536ff7;p=python missing 'self' from TextCalendar.prweek. --- diff --git a/Lib/calendar.py b/Lib/calendar.py index 723bb3c8d4..db7b2b63fd 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). """