diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-23 21:48:32 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-23 21:48:32 -0500 |
commit | 4093673bdfa347b56c480f686b11f35434dc0a96 (patch) | |
tree | fb5be8bba52deea929a6686913b293364f9413eb /mvc/openfiles.py | |
parent | a185f04dc30fcd2d69198f7acc62b6fb1441ba04 (diff) | |
download | librevideoconverter-4093673bdfa347b56c480f686b11f35434dc0a96.tar.lz librevideoconverter-4093673bdfa347b56c480f686b11f35434dc0a96.tar.xz librevideoconverter-4093673bdfa347b56c480f686b11f35434dc0a96.zip |
minor fix
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]) |