Skip to content

Commit

Permalink
Merge pull request #27 from vitalii-tym/master
Browse files Browse the repository at this point in the history
Fix for bugs #25 and #24
  • Loading branch information
metasmile authored Nov 28, 2018
2 parents ff00963 + 8e19795 commit aaffe7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions strsync/strsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,10 @@ def resolve_file_names(target_file_names):
# Init with Base.lproj
for dir, subdirs, files in walked:
if os.path.basename(dir) == __BASE_RESOUCE_DIR__:
for _file in resolve_file_names(files):
f = os.path.join(dir, _file)
for _file in resolve_file_names(files):
f = os.path.join(dir, _file)


if notexist_or_empty_file(f):
continue

Expand Down

0 comments on commit aaffe7b

Please sign in to comment.