From fd95c7b50691417d972a7ffc52e43c0ab65863c6 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Wed, 6 Feb 2019 20:17:09 +0100 Subject: [PATCH] Fix CI issue --- lib/ansible/modules/system/beadm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/beadm.py b/lib/ansible/modules/system/beadm.py index c6327fdc0b..0027c562e9 100644 --- a/lib/ansible/modules/system/beadm.py +++ b/lib/ansible/modules/system/beadm.py @@ -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: