diff options
author | Guido van Rossum <guido@python.org> | 1999-08-11 14:55:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-08-11 14:55:43 (GMT) |
commit | aa6ed0c341106f405c14545b699a404a11ee77cb (patch) | |
tree | 20bc0073dbdfe1b841540e4a35965b30014b3513 /Tools/idle | |
parent | 292f2c53dab77422db01541bc8fdb64fb1732e92 (diff) | |
download | cpython-aa6ed0c341106f405c14545b699a404a11ee77cb.zip cpython-aa6ed0c341106f405c14545b699a404a11ee77cb.tar.gz cpython-aa6ed0c341106f405c14545b699a404a11ee77cb.tar.bz2 |
Moshe noticed an inconsistency in his comment, so I'm rephrasing it to
be clearer.
Diffstat (limited to 'Tools/idle')
-rw-r--r-- | Tools/idle/TreeWidget.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/idle/TreeWidget.py b/Tools/idle/TreeWidget.py index bf63bdd..60eefdc 100644 --- a/Tools/idle/TreeWidget.py +++ b/Tools/idle/TreeWidget.py @@ -24,8 +24,7 @@ import ZoomHeight ICONDIR = "Icons" -# If this file is <prefix>/lib/python1.5/idle/TreeWidget.py, -# we expect to find the icons in <prefix>/lib/python1.5/Icons/ +# Look for Icons subdirectory in the same directory as this module try: _icondir = os.path.join(os.path.dirname(__file__), ICONDIR) except NameError: |