From 2a0d4818f6bfbfd7edef64acfa51424781ab4315 Mon Sep 17 00:00:00 2001 From: bradnelson Date: Wed, 4 Aug 2010 13:15:23 -0700 Subject: [PATCH] Dropping useless comment. Using getuser which is more correct. Review URL: http://codereview.chromium.org/3005055 --- bin/cros_gsdcurl.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/cros_gsdcurl.py b/bin/cros_gsdcurl.py index e046fe2795..38bafb569a 100755 --- a/bin/cros_gsdcurl.py +++ b/bin/cros_gsdcurl.py @@ -14,8 +14,7 @@ import urllib def Authenticate(): - # Authenticate. - default_username = os.environ.get('LOGNAME', '') + default_username = getpass.getuser() username = os.environ.get('GSDCURL_USERNAME') if username is None: sys.stderr.write('Username [' + default_username + ']: ')