mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
dfca074cf7
commit
62f0688ae5
@ -701,7 +701,10 @@ class LibraryPage(QWizardPage, LibraryUI):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
def is_library_dir_suitable(self, x):
|
def is_library_dir_suitable(self, x):
|
||||||
return LibraryDatabase2.exists_at(x) or not os.listdir(x)
|
try:
|
||||||
|
return LibraryDatabase2.exists_at(x) or not os.listdir(x)
|
||||||
|
except:
|
||||||
|
return False
|
||||||
|
|
||||||
def validatePage(self):
|
def validatePage(self):
|
||||||
newloc = unicode(self.location.text())
|
newloc = unicode(self.location.text())
|
||||||
@ -720,6 +723,13 @@ class LibraryPage(QWizardPage, LibraryUI):
|
|||||||
_('Path to library too long. Must be less than'
|
_('Path to library too long. Must be less than'
|
||||||
' %d characters.')%LibraryDatabase2.WINDOWS_LIBRARY_PATH_LIMIT,
|
' %d characters.')%LibraryDatabase2.WINDOWS_LIBRARY_PATH_LIMIT,
|
||||||
show=True)
|
show=True)
|
||||||
|
if not os.path.exists(x):
|
||||||
|
try:
|
||||||
|
os.makedirs(x)
|
||||||
|
except:
|
||||||
|
return error_dialog(self, _('Bad location'),
|
||||||
|
_('Failed to create a folder at %s')%x,
|
||||||
|
det_msg=traceback.format_exc(), show=True)
|
||||||
|
|
||||||
if self.is_library_dir_suitable(x):
|
if self.is_library_dir_suitable(x):
|
||||||
self.location.setText(x)
|
self.location.setText(x)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user