From 9c04ac6a8ee729a9fe74cde82e5d9d9b6aa7ee66 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 17 Dec 2016 13:23:05 +1000 Subject: [PATCH] fix opening of explorer folders on windows --- aqt/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))