Skip to content

Commit

Permalink
Merge branch 'version-13-hotfix' into version-13
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Jul 13, 2023
2 parents 40669fb + 0a16340 commit d3ce66e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-assets-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ jobs:
- uses: actions/checkout@v2
with:
path: 'frappe'

- uses: actions/setup-node@v1
with:
python-version: '12.x'
node-version: '12'

- uses: actions/setup-python@v2
with:
python-version: '3.7'
Expand Down
2 changes: 1 addition & 1 deletion frappe/email/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_contact_list(txt, page_length=20):
{"txt": "%" + txt + "%", "page_length": page_length},
as_dict=True,
)
out = filter(None, out)
out = list(filter(None, out))

update_contact_cache(out)

Expand Down

0 comments on commit d3ce66e

Please sign in to comment.