--- a/thefuck/system/unix.py
+++ b/thefuck/system/unix.py
@@ -3,7 +3,6 @@
 import tty
 import termios
 import colorama
-from distutils.spawn import find_executable
 from .. import const
 
 init_output = colorama.init
@@ -38,9 +37,7 @@
 
 
 def open_command(arg):
-    if find_executable('xdg-open'):
-        return 'xdg-open ' + arg
-    return 'open ' + arg
+    return 'xdg-open ' + arg
 
 
 try:
