diff --git a/aqt/utils.py b/aqt/utils.py index 3cb663c38..1c9e63c7f 100644 --- a/aqt/utils.py +++ b/aqt/utils.py @@ -345,7 +345,7 @@ def getBase(col): def openFolder(path): if isWin: - subprocess.Popen(["explorer", path]) + subprocess.Popen(["explorer", "file://"+path]) else: oldlpath = os.environ.pop("LD_LIBRARY_PATH", None) QDesktopServices.openUrl(QUrl("file://" + path))