diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1999-10-05 08:54:17 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1999-10-05 08:54:17 (GMT) |
commit | 231fffe1d4582263a430781e0a3435e444399abe (patch) | |
tree | 29582b69d513efe520daf67ed4ae196a625ec2f2 /Mac | |
parent | a5a24b76f494c2e5a83c08061a471963e3e297a9 (diff) | |
download | cpython-231fffe1d4582263a430781e0a3435e444399abe.zip cpython-231fffe1d4582263a430781e0a3435e444399abe.tar.gz cpython-231fffe1d4582263a430781e0a3435e444399abe.tar.bz2 |
AskString always set the dialog id to 257. Fixed.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Lib/EasyDialogs.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Mac/Lib/EasyDialogs.py b/Mac/Lib/EasyDialogs.py index 24f6515..db855f5 100644 --- a/Mac/Lib/EasyDialogs.py +++ b/Mac/Lib/EasyDialogs.py @@ -72,7 +72,6 @@ def AskString(prompt, default = "", id=257, ok=None, cancel=None): can be at most 255 characters long. """ - id = 257 d = GetNewDialog(id, -1) if not d: print "Can't get DLOG resource with id =", id |