mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
catch another full disk error
This commit is contained in:
parent
eef86bf37e
commit
ed0fae3c0c
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ your system's temporary folder may be incorrect.""")
|
|||
return showWarning(self.tempFolderMsg())
|
||||
if "Beautiful Soup is not an HTTP client" in error:
|
||||
return
|
||||
if "database or disk is full" in error:
|
||||
if "database or disk is full" in error or "Errno 28" in error:
|
||||
return showWarning(_("Your computer's storage may be full. Please delete some unneeded files, then try again."))
|
||||
if "disk I/O error" in error:
|
||||
return showWarning(_("""\
|
||||
|
|
Loading…
Reference in a new issue