Skip to content

Commit

Permalink
Merge branch 'master' into disregard_empty_matches
Browse files Browse the repository at this point in the history
  • Loading branch information
northwestwitch committed Nov 17, 2019
2 parents 5c29932 + e39d2cd commit 919c34e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patientMatcher/utils/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def html_format(obj, indent=0, notify_complete=False):
if isinstance(obj, dict): # patient object
htmls = []
for k,v in obj.items():
if notify_complete or k in ['node', 'patients', 'patient', 'contact', 'id', 'name', 'href', 'institution']:
if notify_complete or k in ['node', 'patients', 'patient', 'contact', 'id', 'name', 'href', 'email', 'institution']:
htmls.append("<span style='font-style: italic; color: #888'>%s</span>: %s" % (k,html_format(obj=v,indent=indent+1,
notify_complete=notify_complete)))

Expand Down

0 comments on commit 919c34e

Please sign in to comment.