Bug fix on getAddress
This commit is contained in:
parent
3810312794
commit
30256a0499
1 changed files with 1 additions and 1 deletions
|
@ -579,7 +579,7 @@ class LookupEmailTryBuild (object):
|
|||
for directory, sort_order in tryjobdir:
|
||||
for _, _, filenames in os.walk (directory):
|
||||
for f in sorted (filenames, reverse = sort_order):
|
||||
with open (f, 'r') as myf:
|
||||
with open (os.path.join (directory, f), 'r') as myf:
|
||||
for line in reversed (myf.readlines ()):
|
||||
m = re.match (name_re, line)
|
||||
if m:
|
||||
|
|
Loading…
Reference in a new issue