Fix a typo and left over debug command

This commit is contained in:
Clayton O'Neill 2015-02-11 20:28:52 +00:00
parent 5a78105d00
commit dd43459dcb
2 changed files with 1 additions and 2 deletions

View File

@ -89,7 +89,6 @@ class OpenstackGitRepo(object):
return self
def next(self):
print self._cache_dir()
return OpenstackCommit(next(self._commit_iterator),
self.project, self.branch,
self._cache_dir())

View File

@ -48,7 +48,7 @@ def execute(command, cwd=None, exit=0):
(out, err) = process.communicate()
exitcode = process.wait()
LOG.debug("Command exitted with rc: %s; STDOUT: %s; STDERR: %s" %
LOG.debug("Command exited with rc: %s; STDOUT: %s; STDERR: %s" %
(exitcode, out, err))
if cwd: