Skip to content

Commit

Permalink
convert dirOutNew to string to avoid AttributeError in tkfilebrowser
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsgalore committed Mar 25, 2019
1 parent d73c233 commit 7512117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omimgr/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def main():
retryFromRescueFlag = False
else:
# Reset dirOut to parent dir of current value
dirOutNew = Path(myGUI.disc.dirOut).parent
dirOutNew = str(Path(myGUI.disc.dirOut).parent)
# Reset the GUI
myGUI.reset_gui(dirOutNew)

Expand Down

0 comments on commit 7512117

Please sign in to comment.