Skip to content

Commit

Permalink
Fix dataFileExists().
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed Nov 8, 2020
1 parent 924481f commit e1bc959
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ def _resolve(self, filepath: str) -> Optional[Path]:
files = self._organizer.findFiles(path.parent.as_posix(), path.name)
if files:
path = Path(files[0])
else:
path = None

return path

Expand Down

0 comments on commit e1bc959

Please sign in to comment.