Skip to content

Commit

Permalink
Add os major version 9 for Compliance (#3413)
Browse files Browse the repository at this point in the history
Signed-off-by: Marley Stipich <[email protected]>
  • Loading branch information
marleystipich2 authored May 18, 2022
1 parent 442a110 commit 32d73e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion insights/client/apps/compliance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def os_release(self):
return version

def os_major_version(self):
return findall("^[6-8]", self.os_release())[0]
return findall("^[6-9]", self.os_release())[0]

def os_minor_version(self):
return findall("\d+$", self.os_release())[0]
Expand Down

0 comments on commit 32d73e8

Please sign in to comment.