Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fkantelberg committed Jul 28, 2023
1 parent a3d2d02 commit 5eb65a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/odoo_analyse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"geometric_mean",
]

VERSION = "1.4.0"
VERSION = "1.5.0"
6 changes: 3 additions & 3 deletions src/odoo_analyse/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ def _parse_csv(self, path):

def _parse_js(self, path, pattern):
"""Parse JavaScript files.
`path` .. directory of the module
`pattern` .. relative path/glob of the JS files"""
`path` .. directory of the module
`pattern` .. relative path/glob of the JS files"""

for file in glob.glob(os.path.join(path, pattern.strip('/')), recursive=True):
for file in glob.glob(os.path.join(path, pattern.strip("/")), recursive=True):
if not file.endswith(".js"):
continue

Expand Down

0 comments on commit 5eb65a6

Please sign in to comment.