796d795
< params = self.getCCParams()
798c797,800
< self._ccObject = -1 # flag to catch cycles in recursion
---
> # Cycles in the configuration heirarchy are not supported. This
> # will catch the resulting recursion and stop.
> self._ccObject = -1
> params = self.getCCParams()
801c803
< raise RuntimeError, "%s: recursive call to getCCObject()" \
---
> raise RuntimeError, "%s: Cycle found in configuration heirarchy." \