rosdoc: typecheck in has_builder was wrong

This commit is contained in:
Ken Conley 2010-03-10 02:09:42 +00:00
parent 323b760333
commit 10a9964c60
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class RosdocContext(object):
rd_config = self.rd_configs.get(package, None)
if not rd_config:
return builder == 'doxygen'
if type(rd_config) != dict:
if type(rd_config) != list:
print >> sys.stderr, "WARNING: package [%s] has an invalid rosdoc config"%package
return False
try: