Hi,<br><br>With reference to bug : <a href="http://bugs.sugarlabs.org/ticket/2152">http://bugs.sugarlabs.org/ticket/2152</a><br><br>I am trying to replace the &#39;:&#39; character in the username with &#39;_&#39;, while the user is entering the Username in About Me.<br>
<br>The following has been done by me so far:<br>-------------------------------------------------------------<br>diff --git a/extensions/cpsection/aboutme/model.py b/extensions/cpsection/aboutme/model.py<br>index 8500799..47e7158 100644<br>
--- a/extensions/cpsection/aboutme/model.py<br>+++ b/extensions/cpsection/aboutme/model.py<br>@@ -17,6 +17,7 @@<br> <br> from gettext import gettext as _<br> import gconf<br>+import re<br> <br> _COLORS = {&#39;red&#39;: {&#39;dark&#39;:&#39;#b20008&#39;, &#39;medium&#39;:&#39;#e6000a&#39;, &#39;light&#39;:&#39;#ffadce&#39;},<br>
            &#39;orange&#39;: {&#39;dark&#39;:&#39;#9a5200&#39;, &#39;medium&#39;:&#39;#c97e00&#39;, &#39;light&#39;:&#39;#ffc169&#39;},<br>@@ -42,6 +43,7 @@ def set_nick(nick):<br>     if not nick:<br>         raise ValueError(_(&quot;You must enter a name.&quot;))<br>
     if not isinstance(nick, unicode):<br>+        nick = re.sub(r&#39;:&#39;, &#39;_&#39;, nick)<br>         nick = unicode(nick, &#39;utf-8&#39;)<br>     client = gconf.client_get_default()<br>     client.set_string(&quot;/desktop/sugar/user/nick&quot;, nick)<br>
----------------------------------------------------------<br>I need some feedback on this.<br><br>Also I am trying to put a check at boot up so that any &#39;nick&#39; /username having &#39;:&#39; can be rectified at startup itself. I have tracked  down the file jarabe/model/session.py<br>
<br>Regards,<br>Dipankar<br>