Show More
@@ -201,7 +201,8 b' def cd_completer(self, event):' | |||
|
201 | 201 | if relpath.startswith('~'): |
|
202 | 202 | relpath = os.path.expanduser(relpath).replace('\\','/') |
|
203 | 203 | found = [] |
|
204 |
for d in [f + '/' for f in glob.glob(relpath+'*') |
|
|
204 | for d in [f.replace('\\','/') + '/' for f in glob.glob(relpath+'*') | |
|
205 | if os.path.isdir(f)]: | |
|
205 | 206 | if ' ' in d: |
|
206 | 207 | # we don't want to deal with any of that, complex code |
|
207 | 208 | # for this is elsewhere |
General Comments 0
You need to be logged in to leave comments.
Login now