#3767: fix from kruset for better error reporting
This commit is contained in:
parent
4a8d9a446d
commit
0bb4ef9ac2
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue