mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix CI issue
This commit is contained in:
parent
e1d0795aa3
commit
fd95c7b506
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ class BE(object):
|
|||
if '@' in self.name:
|
||||
for line in out.splitlines():
|
||||
if self.is_freebsd:
|
||||
check = re.match(r'.+/({})\s+\-'.format(self.name), line)
|
||||
check = re.match(r'.+/({0})\s+\-'.format(self.name), line)
|
||||
if check:
|
||||
return check
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue