diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-09-18 00:10:23 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-09-18 00:10:23 (GMT) |
commit | ba58e1d827445c3132a8b1a2d587c7e5eb9d5531 (patch) | |
tree | 153befd3cd6a9b0964b97915e9bc370dcc2eb7e3 /Lib | |
parent | e4818f693749af358b1a2b3f96853c756f80856e (diff) | |
parent | 137b572d55af5e6777a766de4d595cbff111d0c3 (diff) | |
download | cpython-ba58e1d827445c3132a8b1a2d587c7e5eb9d5531.zip cpython-ba58e1d827445c3132a8b1a2d587c7e5eb9d5531.tar.gz cpython-ba58e1d827445c3132a8b1a2d587c7e5eb9d5531.tar.bz2 |
Merge: Add versionchanged for #14984, remove extra blank from string.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/netrc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/netrc.py b/Lib/netrc.py index 713e322..a243c37 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py @@ -99,7 +99,7 @@ class netrc: 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), |