Skip to content
Snippets Groups Projects
Commit e5badc18 authored by Walter Lampl's avatar Walter Lampl
Browse files

fix exception synatax in ComponentAccumulator.py

parent df27db83
No related branches found
No related tags found
No related merge requests found
...@@ -407,8 +407,8 @@ class ComponentAccumulator(object): ...@@ -407,8 +407,8 @@ class ComponentAccumulator(object):
if (other._privateTools is not None): if (other._privateTools is not None):
if isinstance(other._privateTools,ConfigurableAlgTool): if isinstance(other._privateTools,ConfigurableAlgTool):
raise RuntimeError("merge called with a ComponentAccumulator a dangling private tool %s/%s", raise RuntimeError("merge called with a ComponentAccumulator a dangling private tool %s/%s" %
other._privateTools.getType(),other._privateTools.getName()) (other._privateTools.getType(),other._privateTools.getName()))
else: else:
raise RuntimeError("merge called with a ComponentAccumulator a dangling (array of) private tools") raise RuntimeError("merge called with a ComponentAccumulator a dangling (array of) private tools")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment