From 4093673bdfa347b56c480f686b11f35434dc0a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Eduardo?= Date: Wed, 23 Aug 2017 21:48:32 -0500 Subject: minor fix --- mvc/openfiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mvc/openfiles.py') diff --git a/mvc/openfiles.py b/mvc/openfiles.py index 49de26e..ef6710a 100644 --- a/mvc/openfiles.py +++ b/mvc/openfiles.py @@ -16,10 +16,10 @@ def _open_path_osx(path): subprocess.call(['open', '--', path]) def _open_path_kde(path): - subprocess.call(["kfmclient", "exec", "file://" + path]) + subprocess.call(["kfmclient", "exec", "file://" + path]) # kfmclient is part of konqueror def _open_path_gnome(path): - subprocess.call(["gnome-open", path]) + subprocess.call(["gnome-open",'--'. path]) def _open_path_windows(path): subprocess.call(['explorer', path]) -- cgit v1.2.3