commit | 137b572d55af5e6777a766de4d595cbff111d0c3 | [log] [tgz] |
---|---|---|
author | R David Murray <rdmurray@bitdance.com> | Tue Sep 17 20:08:09 2013 -0400 |
committer | R David Murray <rdmurray@bitdance.com> | Tue Sep 17 20:08:09 2013 -0400 |
tree | 0f7e99e76a3835127c11eaef6cc9814633906884 | |
parent | 4189b67a66afc7a5d4ed9ef39c9f8187d98e7909 [diff] [blame] |
Add versionchanged for #14984, remove extra blank from string.
diff --git a/Lib/netrc.py b/Lib/netrc.py index 0b4eedf..2b45bc2 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py
@@ -88,7 +88,7 @@ try: user = pwd.getpwuid(os.getuid())[0] except KeyError: - user = 'uid %s ' % os.getuid() + user = 'uid %s' % os.getuid() raise NetrcParseError( ("~/.netrc file owner (%s) does not match" " current user (%s)") % (fowner, user),