Browse Source

Re-add path

pull/3042/head
mano3m 11 years ago
parent
commit
610edea20e
  1. 2
      libs/unrar2/unix.py

2
libs/unrar2/unix.py

@ -39,7 +39,7 @@ def call_unrar(params):
"Calls rar/unrar command line executable, returns stdout pipe"
global rar_executable_cached
if rar_executable_cached is None:
for command in ('unrar', 'rar'):
for command in ('unrar', 'rar', os.path.join(os.path.dirname(__file__), 'unrar')):
try:
subprocess.Popen([command], stdout = subprocess.PIPE)
rar_executable_cached = command

Loading…
Cancel
Save