Skip to content

Commit

Permalink
are you happy yet, flake
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtOfCode- committed Nov 25, 2016
1 parent 5f97bc7 commit e6f29e2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions chatcommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,11 @@ def command_blacklist(message_parts, ev_user_name, ev_room, ev_user_id, wrap2, *

chat_user_profile_link = "http://chat.{host}/users/{id}".format(host=wrap2.host, id=str(ev_user_id))
result = GitManager.add_to_blacklist(
items_to_blacklist=message_parts[1:],
username=ev_user_name,
chat_profile_link=chat_user_profile_link,
code_permissions=datahandling.is_code_privileged(ev_room, ev_user_id, wrap2))
items_to_blacklist=message_parts[1:],
username=ev_user_name,
chat_profile_link=chat_user_profile_link,
code_permissions=datahandling.is_code_privileged(ev_room, ev_user_id, wrap2)
)
return Response(command_status=result[0], message=result[1])


Expand Down

0 comments on commit e6f29e2

Please sign in to comment.