Some more run_command updates.

This commit is contained in:
Michael DeHaan
2014-03-12 17:04:19 -04:00
parent 303e085f8b
commit c193604f60
2 changed files with 4 additions and 5 deletions

View File

@@ -76,8 +76,7 @@ class Bzr(object):
self.bzr_path = bzr_path
def _command(self, args_list, cwd=None, **kwargs):
(rc, out, err) = self.module.run_command(
[self.bzr_path] + args_list, cwd=cwd, **kwargs)
(rc, out, err) = self.module.run_command([self.bzr_path] + args_list, cwd=cwd, **kwargs)
return (rc, out, err)
def get_version(self):