diff options
author | Guido van Rossum <guido@python.org> | 1999-06-03 14:25:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-06-03 14:25:49 (GMT) |
commit | b10cb9a38302224db6e0492db93aac03604f60c9 (patch) | |
tree | db9e8b6b847cc1569f52a675547b4801e9dcb866 /Tools | |
parent | 23c115f1c9495f6899e8964c277442360d8fcf54 (diff) | |
download | cpython-b10cb9a38302224db6e0492db93aac03604f60c9.zip cpython-b10cb9a38302224db6e0492db93aac03604f60c9.tar.gz cpython-b10cb9a38302224db6e0492db93aac03604f60c9.tar.bz2 |
Enclose pattern in quotes in status message.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/idle/GrepDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/GrepDialog.py b/Tools/idle/GrepDialog.py index 26f1236..61c77c3 100644 --- a/Tools/idle/GrepDialog.py +++ b/Tools/idle/GrepDialog.py @@ -79,7 +79,7 @@ class GrepDialog(SearchDialogBase): list.sort() self.close() pat = self.engine.getpat() - print "Searching %s in %s ..." % (pat, path) + print "Searching %s in %s ..." % (`pat`, path) hits = 0 for fn in list: try: |