summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-07-01 04:17:25 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2003-07-01 04:17:25 +0000
commit8b9025b4c7c9a20b60f9bb3fa58419b3adae77a2 (patch)
tree915a243b75b6c5423ae959767ba0b6b3d4d66e3e
parentb86a52d52b9a81ab7e9958c9b6693ae1eb377db2 (diff)
downloadcpython-8b9025b4c7c9a20b60f9bb3fa58419b3adae77a2.tar.gz
Backport:
SF bug 753592, websucker Pass the proper variable when the user supplies a directory.
-rw-r--r--Misc/NEWS2
-rwxr-xr-xTools/webchecker/wsgui.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eb746f32f7..2d83441d56 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3,6 +3,8 @@ What's New in Python 2.2.4?
- SF #746304: Builtin functions are now copy.[deep]copyable.
Classes are now also deepcopyable.
+- SF #753592: webchecker/wsgui now handles user supplied directories.
+
What's New in Python 2.2.3 (final) ?
Release date: 30-May-2003
====================================
diff --git a/Tools/webchecker/wsgui.py b/Tools/webchecker/wsgui.py
index c301c6fdaf..3b8a8e44c1 100755
--- a/Tools/webchecker/wsgui.py
+++ b/Tools/webchecker/wsgui.py
@@ -162,7 +162,7 @@ class App:
else:
self.sucker.savedir = dir
self.sucker.rootdir = os.path.dirname(
- websucker.Sucker.savefilename(self, url))
+ websucker.Sucker.savefilename(self.sucker, url))
self.go_button.configure(state=DISABLED)
self.auto_button.configure(state=DISABLED)
self.cancel_button.configure(state=NORMAL)