summaryrefslogtreecommitdiffstats
path: root/Lib/calendar.py
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-07 05:41:13 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-07 05:41:13 (GMT)
commit7846f4d365c4d1564b4fe46ec8728f7473536ff7 (patch)
tree3b1c9fb146aef0c251ee02f1b0254dccee23d432 /Lib/calendar.py
parentb4e4165b96a66a69825ef80b2af7b24cf50f3035 (diff)
downloadcpython-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.py2
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).
"""