Skip to content

Commit

Permalink
fixing typo in calling IsExec
Browse files Browse the repository at this point in the history
  • Loading branch information
mgymrek committed Nov 28, 2014
1 parent ec91c24 commit 4201708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lobstr_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def CheckBin(binname):
for path in os.environ["PATH"].split(os.pathsep):
path = path.strip('"')
exe_file = os.path.join(path, binname)
if is_exe(exe_file):
if IsExec(exe_file):
return True
return False

Expand Down

0 comments on commit 4201708

Please sign in to comment.