Skip to content

Commit

Permalink
Update path for command line utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
ghoshbishakh committed May 11, 2017
1 parent bf3678a commit b5f849f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/tools/docgen_cmd.py
Expand Up @@ -86,7 +86,8 @@ def get_rst_string(module_name, help_string):
for f in listdir(bin_folder):
if f.startswith("dipy_"):
try:
help_string, err = sh3("%s -h" % (f,))
help_string, err = sh3("python %s -h" % (
pjoin(bin_folder, f),))
except CalledProcessError:
print("Could not execute command %s" % (f))
continue
Expand Down

0 comments on commit b5f849f

Please sign in to comment.