about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/ext/get_executables.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ranger/ext/get_executables.py b/ranger/ext/get_executables.py
index c19798a6..03f438dd 100644
--- a/ranger/ext/get_executables.py
+++ b/ranger/ext/get_executables.py
@@ -16,7 +16,6 @@
 from stat import S_IXOTH, S_IFREG
 from ranger.ext.iter_tools import unique
 from os import listdir, environ, stat
-from os.path import join
 
 
 _cached_executables = None
@@ -54,7 +53,7 @@ def get_executables_uncached(*paths):
 		except:
 			continue
 		for item in content:
-			abspath = join(path, item)
+			abspath = path + '/' + item
 			try:
 				filestat = stat(abspath)
 			except:
kspecs/ranger/blame/ranger/help/__init__.py?h=v1.9.0b1&id=2c5ea01dd2003f172bdc5afdb8bb8bf34eccf0fa'>^
b4c2c703 ^
4b826595 ^







535a9bd1 ^
4b826595 ^

aed12f88 ^
4b826595 ^


















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46