Browse Source

small bugfix

pull/18/head
Joël Schaerer 15 years ago
parent
commit
796e2c9048
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autojump

+ 1
- 1
autojump View File

@ -91,7 +91,7 @@ else:
if not args: pattern=""
else: pattern=args[-1]
if len(pattern)>0 and pattern[0]=="/": #if pattern is a full path, jump there
if len(pattern)>0 and pattern[0]=="/" and os.path.exists(pattern): #if pattern is a full path, jump there
if not completion : print pattern
else:
endmatch=re.search("__([0-9]+)",pattern)

Loading…
Cancel
Save