Added Python 3 support for autojump IPython plugin

pull/214/head
Keith Hughitt 11 years ago
parent fca26f3ef4
commit 07c0313430

@ -24,9 +24,9 @@ ip = get_ipython()
@register_line_magic
def j(path):
cmd = ['autojump'] + path.split()
newpath = sub.Popen(cmd, stdout=sub.PIPE, shell=False).communicate()[0][:-1] # delete last '\n'
newpath = sub.Popen(cmd, stdout=sub.PIPE, shell=False).communicate()[0].strip()
if newpath:
ip.magic('cd %s' % newpath)
ip.magic('cd %s' % newpath.decode('utf-8'))
# remove from namespace
del j

Loading…
Cancel
Save