Commit a9daee3e authored by Terry Jan Reedy's avatar Terry Jan Reedy

Merge with 3.3

parents 1db0eacf c3111fcb
...@@ -98,7 +98,7 @@ class GrepDialog(SearchDialogBase): ...@@ -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 = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment