git » msnlib » commit 7a0eac2

Show your new nick when changing it.

author Alberto Bertogli
2005-05-14 03:37:46 UTC
committer Alberto Bertogli
2005-05-14 03:37:46 UTC
parent 5c9094c977c471dd6792aeec5cf43aacc7cbceae

Show your new nick when changing it.

msn +2 -1

diff --git a/msn b/msn
index 60e578d..923c238 100644
--- a/msn
+++ b/msn
@@ -1533,7 +1533,8 @@ def cb_rea(md, type, tid, params):
 			+ 'has been renamed to ' + c.bold + nick + '\n'
 		printl(out)
 	else:
-		out = '\r' + c.magenta + 'Your nick has been changed\n'
+		out = '\r' + c.magenta + 'Your nick has been changed to' \
+			+ c.bold + nick + '\n'
 		printl(out)
 	msncb.cb_rea(md, type, tid, params)
 m.cb.rea = cb_rea