From 78ecf7150a9de660a5fdbf612f165f78feac5bf2 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Wed, 17 Jan 2007 22:14:38 +0000 Subject: [PATCH] - fix getpass() reference --- plcsh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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) -- 2.43.0