mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-04 09:38:52 +00:00
Some more run_command updates.
This commit is contained in:
parent
303e085f8b
commit
c193604f60
2 changed files with 4 additions and 5 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue