Skip to content

Commit

Permalink
Allow experimental and beta plugins to be registered
Browse files Browse the repository at this point in the history
Fixes #13232.
  • Loading branch information
Nick-Hall committed Mar 22, 2024
1 parent 90dde2c commit 9dee4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gramps/gen/plug/_pluginreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@ def scan_dir(self, dir, filenames, uistate=None):
if not self.__req.check_plugin(plugin):
rmlist.append(ind)
continue
if not plugin.status == STABLE and self.stable_only:
if plugin.status == UNSTABLE and self.stable_only:
rmlist.append(ind)
continue
if (
Expand Down

0 comments on commit 9dee4a1

Please sign in to comment.