1
0
mirror of https://github.com/wting/autojump synced 2026-03-02 03:49:26 +00:00

remove surround_quotes() due to bash issues

This commit is contained in:
William Ting
2013-12-31 08:37:33 -06:00
parent 5f8be97861
commit c4feb1a2b2
2 changed files with 5 additions and 7 deletions

View File

@@ -162,13 +162,13 @@ def print_tab_menu(needle, tab_entries, separator):
on subsequent calls.
"""
for i, entry in enumerate(tab_entries):
print(encode_local(surround_quotes(
print(encode_local(
'%s%s%d%s%s' % (
needle,
separator,
i + 1,
separator,
entry.path))))
entry.path)))
def sanitize(directories):