diff --git a/CHANGELOG.md b/CHANGELOG.md index 6169554..ab4c7a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ This is an overview of major changes. Refer to the git repository for a full log Version 0.1.35 ------------- +- #367 Reveal file doesn't work on Windows - #273 Inselect as a package - #83 Architecture and code organisation diff --git a/inselect/gui/utils.py b/inselect/gui/utils.py index 6e7c52a..9d8cfba 100644 --- a/inselect/gui/utils.py +++ b/inselect/gui/utils.py @@ -210,7 +210,7 @@ def reveal_path(path): # http://stackoverflow.com/a/3546503 path = path.resolve() if sys.platform.startswith("win"): - res = subprocess.call(["explorer.exe", u"/select,{0}".format(path)]) + res = subprocess.call(u"explorer.exe /select,{0}".format(path)) if 1 != res: raise ValueError('Unexpected exit code [{0}]'.format(res)) elif 'Darwin' == platform.system():