aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2016-08-24 17:26:25 -0600
committerjason2016-08-24 17:26:25 -0600
commit1180e331b94b1c02b7714cf7e3fd7d59aabefd96 (patch)
tree25ea19b1f209f469d365a70774d3a8eb8db2ad0d
parentce73bb556051cb99db980545c3c2efb439f40e65 (diff)
downloadwarmachine-ng-1180e331b94b1c02b7714cf7e3fd7d59aabefd96.tar.gz
warmachine-ng-1180e331b94b1c02b7714cf7e3fd7d59aabefd96.zip
update the already responded standup message to bold and link the
usernames in slack
-rw-r--r--warmachine/addons/standup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/warmachine/addons/standup.py b/warmachine/addons/standup.py
index 27cee53..1120082 100644
--- a/warmachine/addons/standup.py
+++ b/warmachine/addons/standup.py
@@ -320,7 +320,7 @@ class StandUpPlugin(WarMachinePlugin):
320 320
321 if u in self.users_awaiting_reply and \ 321 if u in self.users_awaiting_reply and \
322 'standup_msg' in self.users_awaiting_reply[u]: 322 'standup_msg' in self.users_awaiting_reply[u]:
323 await connection.say('{}: {}'.format( 323 await connection.say('*@{}*: {}'.format(
324 u, self.users_awaiting_reply[u]['standup_msg']), channel) 324 u, self.users_awaiting_reply[u]['standup_msg']), channel)
325 else: 325 else:
326 await self.standup_priv_msg(connection, u, channel) 326 await self.standup_priv_msg(connection, u, channel)