diff options
Diffstat (limited to 'mvc/openfiles.py')
-rw-r--r-- | mvc/openfiles.py | 4 |
1 files changed, 2 insertions, 2 deletions
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]) |