Skip to content

Commit

Permalink
Merge pull request #274 from acsone/fix-odoo-series-not-detected-message
Browse files Browse the repository at this point in the history
Fix rendering of OdooSeriesNotDtected exceptions
  • Loading branch information
sbidoul authored Dec 10, 2023
2 parents c921b5a + 76be2e4 commit 08f3b33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/oca_github_bot/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class NoManifestFound(Exception):


class OdooSeriesNotDetected(Exception):
pass
def __init__(self, msg=None):
super().__init__(msg or "Odoo series could not be detected")


def is_addons_dir(addons_dir, installable_only=False):
Expand Down

0 comments on commit 08f3b33

Please sign in to comment.