diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1999-10-05 08:54:17 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1999-10-05 08:54:17 +0000 |
commit | 231fffe1d4582263a430781e0a3435e444399abe (patch) | |
tree | 29582b69d513efe520daf67ed4ae196a625ec2f2 | |
parent | a5a24b76f494c2e5a83c08061a471963e3e297a9 (diff) | |
download | cpython-git-231fffe1d4582263a430781e0a3435e444399abe.tar.gz |
AskString always set the dialog id to 257. Fixed.
-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 24f65157b9..db855f58d6 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 |