mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 07:41:30 -07:00
Backport of https://github.com/ansible-collections/community.docker/pull/76 to stable-1. (#1689)
This commit is contained in:
parent
65861d3482
commit
6f1e585da5
2 changed files with 5 additions and 1 deletions
|
@ -116,7 +116,9 @@ class Connection(ConnectionBase):
|
|||
|
||||
@staticmethod
|
||||
def _sanitize_version(version):
|
||||
return re.sub(u'[^0-9a-zA-Z.]', u'', version)
|
||||
version = re.sub(u'[^0-9a-zA-Z.]', u'', version)
|
||||
version = re.sub(u'^v', u'', version)
|
||||
return version
|
||||
|
||||
def _old_docker_version(self):
|
||||
cmd_args = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue