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"
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:
return "Image1"
else:
return "Image1"
return "Image2"
def parse_serialnum(self, data):
for line in data.split('\n'):