mirror of
https://github.com/ankitects/anki.git
synced 2026-01-14 06:23:57 -05:00
fix catch of access denied error
This commit is contained in:
parent
a6eb0185dd
commit
51eac7231e
1 changed files with 1 additions and 1 deletions
|
|
@ -214,7 +214,7 @@ a flash drive.""" % self.base)
|
|||
os.rename(oldFolder, newFolder)
|
||||
except WindowsError as e:
|
||||
self.db.rollback()
|
||||
if "Access is denied" in e:
|
||||
if "Access is denied" in str(e):
|
||||
showWarning(_("""\
|
||||
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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue