Fixed the auto-subscription to channels by non-superusers. Resolves Issue 336. Removed a spurious print statement in the unloggedin create command.

This commit is contained in:
Griatch 2012-12-12 22:57:03 +01:00
parent 2d206c5e68
commit d14b014611
2 changed files with 9 additions and 2 deletions

View file

@ -132,7 +132,6 @@ class CmdUnconnectedCreate(MuxCommand):
session.msg(string)
return
playername, password = parts
print "playername '%s', password: '%s'" % (playername, password)
# sanity checks
if not re.findall('^[\w. @+-]+$', playername) or not (0 < len(playername) <= 30):