-
Notifications
You must be signed in to change notification settings - Fork 355
New issue
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
Add support for non-critical installation errors #3147
Add support for non-critical installation errors #3147
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me so far.
pyanaconda/errors.py
Outdated
message = _("The following error occurred during the installation:") | ||
message += "\n\n" + str(exn) + "\n\n" | ||
message = _("Would you like to ignore this and continue with installation?") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a translator, I would definitely prefer one string to many small pieces. If it's not inconvenient, please make it one string with format or concatenation, as in the handlers above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
The OSCAP add-on needs to be able to raise a non-critical installation error. In that case, the users should be allowed to continue with the installation if they want to.
d214acb
to
f1ce918
Compare
/kickstart-test --testtype smoke |
The OSCAP add-on needs to be able to raise a non-critical installation error.
In that case, the users should be allowed to continue with the installation
if they want to.