Enclose pattern in quotes in status message.

This commit is contained in:
Guido van Rossum 1999-06-03 14:25:49 +00:00
parent 23c115f1c9
commit b10cb9a383
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class GrepDialog(SearchDialogBase):
list.sort() list.sort()
self.close() self.close()
pat = self.engine.getpat() pat = self.engine.getpat()
print "Searching %s in %s ..." % (pat, path) print "Searching %s in %s ..." % (`pat`, path)
hits = 0 hits = 0
for fn in list: for fn in list:
try: try: