Fix CI issue

pull/4420/head
Dag Wieers 2019-02-06 20:17:09 +01:00 committed by ansibot
parent e1d0795aa3
commit fd95c7b506
1 changed files with 1 additions and 1 deletions

View File

@ -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: