Merge pull request #25 from dvorak/misc-fixups

Fix a typo and left over debug command
This commit is contained in:
Craig Tracey 2015-03-09 14:53:16 -04:00
commit 25e7b27a91
2 changed files with 1 additions and 2 deletions

View File

@ -94,7 +94,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: