diff --git a/qt/aqt/main.py b/qt/aqt/main.py index 2a6a16241..9abfebb72 100644 --- a/qt/aqt/main.py +++ b/qt/aqt/main.py @@ -116,6 +116,9 @@ class MainWebView(AnkiWebView): deck_paths = filter(lambda p: not p.endswith(".colpkg"), paths) for path in deck_paths: aqt.importing.importFile(self.mw, path) + # importing continues after the above call returns, so it is not + # currently safe for us to import more than one file at once + return class AnkiQt(QMainWindow):