We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are statements introduced by PR #1294 in koan/app.py like:
elif breed == "redhat" and (os_version >= "rhel7" or os_version >= "fedora17"):
However, statement "rhel6" >= "fedora17" is evaluated as True in Python. Am I correct?
"rhel6" >= "fedora17"
The text was updated successfully, but these errors were encountered:
Fix os_version conditionals (issue #11)
5453dbc
You are indeed. This should fix I believe.
Sorry, something went wrong.
Merge pull request #14 from cobbler/osver
e7e31fb
Note to self: check if this needs backporting to 2.8
No branches or pull requests
There are statements introduced by PR #1294 in koan/app.py like:
elif breed == "redhat" and (os_version >= "rhel7" or os_version >= "fedora17"):
However, statement
"rhel6" >= "fedora17"
is evaluated as True in Python. Am I correct?The text was updated successfully, but these errors were encountered: