Skip to content

Commit

Permalink
Merge pull request #91 from opus-codium/fix-warning
Browse files Browse the repository at this point in the history
  • Loading branch information
smortex authored Jan 28, 2025
2 parents 04cabb3 + 67823ba commit 15824f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/facter/odoo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def module_info(addon):
env = odoo.api.Environment(cr, uid, ctx)
res['databases'][dbname] = {}
regex = re.compile('\\A__\\w*__\\Z')
regex = re.compile(r'\\A__\\w*__\\Z')
res['databases'][dbname]['addons'] = {}
for addon in dir(odoo.addons):
if not regex.match(addon):
Expand Down

0 comments on commit 15824f0

Please sign in to comment.