Removed split method from SolarRunResult

This commit is contained in:
Jedrzej Nowak 2015-10-02 11:39:01 +02:00
parent c392085833
commit f96a339108
2 changed files with 1 additions and 4 deletions

View File

@ -49,7 +49,7 @@ class LibrarianPuppet(object):
branch=git['branch']
)
modules = puppetlabs.split('\n')
modules = puppetlabs.stdout.split('\n')
# remove forge entry
modules = [module for module in modules if not module.startswith('forge')]

View File

@ -74,9 +74,6 @@ class SolarRunResult(object):
return str(self.stderr)
return str(self.stdout)
def split(self, *args, **kwargs):
return self.stdout.split(*args, **kwargs)
class SolarTransport(object):