Skip to content

Commit

Permalink
Merge pull request #7 from TotallyNotRobots/master+akill-fix
Browse files Browse the repository at this point in the history
fixed repeated ' ,'.join() of address
  • Loading branch information
linuxdaemon authored Aug 1, 2018
2 parents 792daad + a33b1c3 commit 0952598
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/akill.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def params_from_msg(msg):
return params

def parse_akill(self, nick, time, reason, address):
address = ", ".join(address)
reason = reason.lower()
text = " ".join(address)
address = ', '.join(address) or nick
Expand Down

0 comments on commit 0952598

Please sign in to comment.