Skip to content

Commit

Permalink
fetch_configs: fix MRO in FirefoxL10nConfig and ThunderbirdL10nConfig…
Browse files Browse the repository at this point in the history
… (bug 1874400) (#1585)
  • Loading branch information
zzzeid authored Jan 12, 2024
1 parent 286d423 commit b08b163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mozregression/fetch_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def build_regex(self):


@REGISTRY.register("firefox-l10n", attr_value="firefox")
class FirefoxL10nConfig(CommonConfig, FirefoxL10nNightlyConfigMixin, L10nMixin):
class FirefoxL10nConfig(L10nMixin, FirefoxL10nNightlyConfigMixin, CommonConfig):
pass


Expand All @@ -626,7 +626,7 @@ class ThunderbirdConfig(


@REGISTRY.register("thunderbird-l10n", attr_value="thunderbird")
class ThunderbirdL10nConfig(L10nMixin, CommonConfig, ThunderbirdL10nNightlyConfigMixin):
class ThunderbirdL10nConfig(L10nMixin, ThunderbirdL10nNightlyConfigMixin, CommonConfig):
pass


Expand Down

0 comments on commit b08b163

Please sign in to comment.