Remove the #! line and use getpass to get the password.

This commit is contained in:
James Vega 2004-09-18 01:56:55 +00:00
parent 0b6739b4bc
commit a641a1c437

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
### ###
# Copyright (c) 2002-2004, Jeremiah Fincher # Copyright (c) 2002-2004, Jeremiah Fincher
# All rights reserved. # All rights reserved.
@ -53,7 +51,7 @@ import supybot.schedule as schedule
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from supybot.questions import output, expect, anything, something, yn from supybot.questions import expect, anything, something, yn, getpass
conf.registerPlugin('Services', True) conf.registerPlugin('Services', True)
nick = something('What is your registered nick?') nick = something('What is your registered nick?')
password = something('What is your password for that nick?') password = something('What is your password for that nick?')