Skip to content
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

Prioritize the experimental flag in the metadata #494

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions qgis-app/plugins/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,16 +122,6 @@ def clean(self):
package = self.cleaned_data.get("package")
try:
cleaned_data = validator(package)
if (
"experimental" in dict(cleaned_data)
and "experimental" in self.cleaned_data
and dict(cleaned_data)["experimental"]
!= self.cleaned_data["experimental"]
):
msg = _(
"The 'experimental' flag in the form does not match the 'experimental' flag in the plugins package metadata.<br />"
)
raise ValidationError(mark_safe("%s" % msg))
self.cleaned_data.update(cleaned_data)
except ValidationError as e:
msg = _(
Expand Down
Loading