fix catch of access denied error
This commit is contained in:
parent
742fe274dd
commit
ae3c0416db
@ -214,7 +214,7 @@ a flash drive.""" % self.base)
|
|||||||
os.rename(oldFolder, newFolder)
|
os.rename(oldFolder, newFolder)
|
||||||
except WindowsError as e:
|
except WindowsError as e:
|
||||||
self.db.rollback()
|
self.db.rollback()
|
||||||
if "Access is denied" in e:
|
if "Access is denied" in str(e):
|
||||||
showWarning(_("""\
|
showWarning(_("""\
|
||||||
Anki could not rename your profile because it could not rename the profile \
|
Anki could not rename your profile because it could not rename the profile \
|
||||||
folder on disk. Please ensure you have permission to write to Documents/Anki \
|
folder on disk. Please ensure you have permission to write to Documents/Anki \
|
||||||
|
Loading…
Reference in New Issue
Block a user