1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixing copy paste issue (#41121)

This commit is contained in:
Anil Kumar Muraleedharan 2018-06-05 14:31:50 +05:30 committed by Trishna Guha
parent 9387c75e29
commit 1ccff0de1a

View file

@ -277,11 +277,11 @@ class Default(FactsBase):
return "NA" return "NA"
def parse_image(self, data): def parse_image(self, data):
match = re.search(r'(.*) image1(.*)', data, re.M | re.I) match = re.search(r'(.*) image(.*)', data, re.M | re.I)
if match: if match:
return "Image1" return "Image1"
else: else:
return "Image1" return "Image2"
def parse_serialnum(self, data): def parse_serialnum(self, data):
for line in data.split('\n'): for line in data.split('\n'):