Skip to content

Commit

Permalink
Fix windows path problem
Browse files Browse the repository at this point in the history
  • Loading branch information
ojomio committed Dec 5, 2020
1 parent f1d70c3 commit 4788f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion print.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _handle_browse_result(self, filename: Optional[str]):
if not filename:
return

self.file = Path(filename).resolve()
self.file = Path(filename)

self.wb = openpyxl.open(self.file)
self.ws = self.wb.active
Expand Down

0 comments on commit 4788f1d

Please sign in to comment.