Clean up password prompt

This commit is contained in:
Michael Spang 2009-08-22 15:05:56 -04:00
parent fe9af9994e
commit c4cb1a3b29
1 changed files with 2 additions and 3 deletions

View File

@ -12,9 +12,8 @@ def start():
library.configure() library.configure()
print "read." print "read."
print "Connecting to LDAP...", print "Connecting to LDAP..."
members.connect(AuthCallback()) members.connect(AuthCallback())
print "connected."
if len(sys.argv) == 1: if len(sys.argv) == 1:
ceo.urwid.main.start() ceo.urwid.main.start()
@ -30,7 +29,7 @@ def start():
class AuthCallback: class AuthCallback:
def callback(self, error): def callback(self, error):
try: try:
sys.stderr.write("Password: ") print "Password: ",
return getpass("") return getpass("")
except KeyboardInterrupt: except KeyboardInterrupt:
print "" print ""