|
@@ -139,7 +139,7 @@ def instantiateStackAdvisor(stackName, stackVersion, parentVersions):
|
|
|
stack_advisor = imp.load_module('stack_advisor_impl', fp, path, ('.py', 'rb', imp.PY_SOURCE))
|
|
|
className = STACK_ADVISOR_IMPL_CLASS_TEMPLATE.format(stackName, version.replace('.', ''))
|
|
|
print "StackAdvisor implementation for stack {0}, version {1} was loaded".format(stackName, version)
|
|
|
- except Exception as e:
|
|
|
+ except IOError: # file not found
|
|
|
traceback.print_exc()
|
|
|
print "StackAdvisor implementation for stack {0}, version {1} was not found".format(stackName, version)
|
|
|
|