adding output for #3881

This commit is contained in:
Tully Foote 2012-03-07 23:33:21 +00:00
parent 05593b7e9b
commit d65c89e901
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def assert_rospack_built():
p = subprocess.Popen(["rospack","help"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = p.communicate()
if p.returncode != 0:
print("rospack not available.\nPlease install rospack before using rosmake and make sure it is available on your path.", file=sys.stderr)
print("rospack not available.\nPlease install rospack before using rosmake and make sure it is available on your path. %s %s"%(output[0], output[1]), file=sys.stderr)
sys.exit(-1)
result = 1