Issue #20730: Fix typo reported by Claudiu Popa.

This commit is contained in:
Terry Jan Reedy 2014-02-23 00:37:16 -05:00
parent 2d659518aa
commit c3111fcbc7
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class GrepDialog(SearchDialogBase):
def findfiles(self, dir, base, rec): def findfiles(self, dir, base, rec):
try: try:
names = os.listdir(dir or os.curdir) names = os.listdir(dir or os.curdir)
except OSerror as msg: except OSError as msg:
print(msg) print(msg)
return [] return []
list = [] list = []