diff options
author | Steven M. Gava <elguavas@python.net> | 2001-07-12 05:35:17 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2001-07-12 05:35:17 (GMT) |
commit | 817a76cfbb3b636d6f084ea859ce61f1cdaece83 (patch) | |
tree | 67accecb4084aaa0e457083fa95c647ac0a2d108 /Lib | |
parent | fc0386cc5ac9107b81ae7fd43115f8eeefd684aa (diff) | |
download | cpython-817a76cfbb3b636d6f084ea859ce61f1cdaece83.zip cpython-817a76cfbb3b636d6f084ea859ce61f1cdaece83.tar.gz cpython-817a76cfbb3b636d6f084ea859ce61f1cdaece83.tar.bz2 |
py-cvs merge, correct indentation
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/WindowList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/WindowList.py b/Lib/idlelib/WindowList.py index 6de3e58..7e05a57 100644 --- a/Lib/idlelib/WindowList.py +++ b/Lib/idlelib/WindowList.py @@ -39,7 +39,7 @@ class WindowList: def unregister_callback(self, callback): try: - self.callbacks.remove(callback) + self.callbacks.remove(callback) except ValueError: pass |