Skip to content

Commit

Permalink
Merge pull request #4 from jpmenil/fix/cbz_posixpath
Browse files Browse the repository at this point in the history
ui: fix string representation for cbr files
  • Loading branch information
lbesnard authored Nov 14, 2022
2 parents 791012b + e441744 commit da95f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bdnex/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():
files.append(path.absolute().as_posix())

for path in Path(dirpath).rglob('*.cbr'):
files.append(path.absolute())
files.append(path.absolute().as_posix())

for file in files:
add_metadata_from_bdgest(file)
Expand Down

0 comments on commit da95f85

Please sign in to comment.