We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2303983 + dec6b42 commit 6fb133cCopy full SHA for 6fb133c
news/68.bugfix
@@ -0,0 +1 @@
1
+Don't crash if ``odoo.addons.__path__`` is a `_NamespacePath`.
src/manifestoo/addons_path.py
@@ -24,7 +24,7 @@
24
path = odoo.modules.module.ad_paths
25
26
with open(sys.argv[1], "wb") as f:
27
- f.write(repr(path).encode("utf-8"))
+ f.write(repr(list(path)).encode("utf-8"))
28
"""
29
30
0 commit comments