Beispiel #1
0
    def _selectCompenentsToInstall(self):
        componentsToInstall = []

        componentsToInstall.extend(self._getComponentsSelectedInOptions())

        if not componentsToInstall:
            componentsToInstall.extend(self._getComponentsSelectedInConfig())

        componentsToInstall = tuple(componentsToInstall)

        printDetail('Components selected: %s' % ', '.join(componentsToInstall),
                    self.verboseLevel, 3)

        return componentsToInstall
Beispiel #2
0
def print_detail(msg, level=0):
    printDetail(msg, verboseThreshold=level)