Skip to content

Commit

Permalink
Merge pull request #5 from Sidnicious/patch-1
Browse files Browse the repository at this point in the history
Pause after speaking a nickname
  • Loading branch information
jtatum committed Feb 12, 2013
2 parents 9dd8142 + 278d3a3 commit 93a3037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion speech.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def processIncomingMessage( message, view ):
source = view.identifier()
if speaking and source.startswith('Chat Room'):
if speaknick:
say(message.senderNickname() + ' ' + msg)
say(message.senderNickname() + ': ' + msg)
else:
say(msg)

Expand Down

0 comments on commit 93a3037

Please sign in to comment.