mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 04:43:44 +02:00
Fix #6420 (Changing / creating libraries no longer possible in 0.7.13)
This commit is contained in:
parent
bd3048f3ab
commit
b6e95c9219
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ def accept(self):
|
|||
if not text:
|
||||
return error_dialog(self, _('No location'), _('No location selected'),
|
||||
show=True)
|
||||
loc = os.path.abspath()
|
||||
loc = os.path.abspath(text)
|
||||
if not loc or not os.path.exists(loc) or not self.check_action(action,
|
||||
loc):
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue