#3767: fix from kruset for better error reporting

This commit is contained in:
Ken Conley 2012-02-15 01:17:30 +00:00
parent 4a8d9a446d
commit 0bb4ef9ac2
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ def get_pkg_msg_specs(package):
specs.append(typespec) specs.append(typespec)
except Exception as e: except Exception as e:
failures.append(t) failures.append(t)
print("ERROR: unable to load %s"%t) print("ERROR: unable to load %s, %s"%(t, e))
return specs, failures return specs, failures
def load_package_dependencies(package, load_recursive=False): def load_package_dependencies(package, load_recursive=False):