mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
give full traceback if import fails
This commit is contained in:
parent
ab1f923387
commit
baf3ceeef6
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Copyright: Damien Elmes <anki@ichi2.net>
|
# Copyright: Damien Elmes <anki@ichi2.net>
|
||||||
# License: GNU GPL, version 3 or later; http://www.gnu.org/copyleft/gpl.html
|
# License: GNU GPL, version 3 or later; http://www.gnu.org/copyleft/gpl.html
|
||||||
|
|
||||||
import os, copy, time, sys, re
|
import os, copy, time, sys, re, traceback
|
||||||
from PyQt4.QtGui import *
|
from PyQt4.QtGui import *
|
||||||
from PyQt4.QtCore import *
|
from PyQt4.QtCore import *
|
||||||
import anki
|
import anki
|
||||||
|
@ -125,7 +125,8 @@ class ImportDialog(QDialog):
|
||||||
self.dialog.status.setText(msg)
|
self.dialog.status.setText(msg)
|
||||||
return
|
return
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
msg = _("Import failed: %s\n") % `e`
|
msg = _("Import failed.\n")
|
||||||
|
msg += traceback.format_exc()
|
||||||
self.dialog.status.setText(msg)
|
self.dialog.status.setText(msg)
|
||||||
return
|
return
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in a new issue