From: Mark Huang Date: Wed, 17 Jan 2007 22:14:38 +0000 (+0000) Subject: - fix getpass() reference X-Git-Tag: pycurl-7_13_1~71 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=78ecf7150a9de660a5fdbf612f165f78feac5bf2 - fix getpass() reference --- diff --git a/plcsh b/plcsh index 7c4b69a..605877c 100755 --- a/plcsh +++ b/plcsh @@ -5,12 +5,13 @@ # Mark Huang # Copyright (C) 2005 The Trustees of Princeton University # -# $Id: plcsh,v 1.2 2007/01/11 05:28:49 mlhuang Exp $ +# $Id: plcsh,v 1.3 2007/01/11 20:45:29 mlhuang Exp $ # import os import sys from optparse import OptionParser +from getpass import getpass from traceback import print_exc sys.path.append(os.path.dirname(os.path.realpath(sys.argv[0]))) @@ -31,7 +32,7 @@ parser.add_option("--help", action = "help", help = "show this help message and # If user is specified but password is not if options.user is not None and options.password is None: try: - options.password = getpass.getpass() + options.password = getpass() except (EOFError, KeyboardInterrupt): print sys.exit(0)