Changeset 141
- Timestamp:
- 06/07/08 16:46:01 (4 months ago)
- Files:
-
- trunk/antimatter/luke/myplugs/libtracker/auth.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/antimatter/luke/myplugs/libtracker/auth.py
r140 r141 3 3 def authenticate_name(bot, ievent): 4 4 """ Not authentication, just checks that the name exists """ 5 bot.say( "Landon","Username?",how='msg')5 bot.say(ievent.name,"Username?",how='msg') 6 6 #rlog(99,"Debug","Testing for auth reload") 7 7 username = waitforuser(bot, ievent.userhost, 30) 8 8 if (username == None): 9 bot.say( "Landon","You have failed to provide a username, do you want to try again? (y/n)")9 bot.say(ievent.name,"You have failed to provide a username, do you want to try again? (y/n)") 10 10 response = waitforuser(bot, ievent.userhost, 10) 11 11 if (not response == None):