Skip to content

Commit

Permalink
fixes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
rafie committed Oct 1, 2023
1 parent 2728ac5 commit 7a3278b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paella/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def is_redhat_compat(self):
return self.dist in ['redhat', 'rhel', 'centos', 'rocky', 'alma', 'almalinux', 'amzn', 'ol']

def redhat_compat_version(self):
if self.dist in ['redhat', 'rhel', 'centos', 'rocky', 'alma', 'almalinux', 'amzn', 'ol']:
if self.dist in ['redhat', 'rhel', 'centos', 'rocky', 'alma', 'almalinux', 'ol']:
return self.os_version[0]
elif self.dist == 'amzn':
amzn_vers = { 2: 7, 2022: 8, 2023: 9 }
Expand Down

0 comments on commit 7a3278b

Please sign in to comment.