Skip to content

Commit

Permalink
[refs #120320] Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaboiangiu committed Aug 14, 2020
1 parent 60bb710 commit d15aaa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docker/app.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ FRAME_VERIFY_SSL=False
FRAME_COOKIES=

BDR_REGISTRY_URL=
BDR_REGISTRY_USERNAME=
BDR_REGISTRY_PASSWORD=
BDR_REGISTRY_TOKEN=


USE_SIDEMENU=True
Expand Down
2 changes: 1 addition & 1 deletion notifications/management/commands/fetch_bdr.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def parse_person_data(self, person):
person[key] = person[key]
return dict(
username=person['contactemail'],
name=person['contactname'].strip('None').strip(),
name=person['contactname'].replace('None', '').strip(),
email=person['contactemail'],
)

Expand Down

0 comments on commit d15aaa9

Please sign in to comment.