1
0
Fork 0
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:
Dag Wieers 2019-02-06 20:17:09 +01:00 committed by ansibot
parent e1d0795aa3
commit fd95c7b506

View file

@ -171,7 +171,7 @@ class BE(object):
if '@' in self.name: if '@' in self.name:
for line in out.splitlines(): for line in out.splitlines():
if self.is_freebsd: 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: if check:
return check return check
else: else: