From 7846f4d365c4d1564b4fe46ec8728f7473536ff7 Mon Sep 17 00:00:00 2001 From: Anthony Baxter Date: Fri, 7 Apr 2006 05:41:13 +0000 Subject: missing 'self' from TextCalendar.prweek. --- Lib/calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/calendar.py b/Lib/calendar.py index 723bb3c..db7b2b6 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). """ -- cgit v0.12