diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-07 05:41:13 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-07 05:41:13 (GMT) |
commit | 7846f4d365c4d1564b4fe46ec8728f7473536ff7 (patch) | |
tree | 3b1c9fb146aef0c251ee02f1b0254dccee23d432 /Lib/calendar.py | |
parent | b4e4165b96a66a69825ef80b2af7b24cf50f3035 (diff) | |
download | cpython-7846f4d365c4d1564b4fe46ec8728f7473536ff7.zip cpython-7846f4d365c4d1564b4fe46ec8728f7473536ff7.tar.gz cpython-7846f4d365c4d1564b4fe46ec8728f7473536ff7.tar.bz2 |
missing 'self' from TextCalendar.prweek.
Diffstat (limited to 'Lib/calendar.py')
-rw-r--r-- | Lib/calendar.py | 2 |
1 files changed, 1 insertions, 1 deletions
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). """ |