Skip to content

Commit

Permalink
[refs #105029] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaboiangiu committed May 15, 2019
1 parent e0579d2 commit 592df36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cache_registry/sync/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def patch_users(external_id, users):
patch = current_app.config.get('PATCH_USERS', {})
if external_id in patch:
print("Patching company: {}".format(external_id))
users.extend(patch[external_id]), True
users.extend(patch[external_id])
return users, True
return users, False


Expand Down

0 comments on commit 592df36

Please sign in to comment.