projects
/
platform
/
upstream
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7234c72
)
python3 fix
author
Kenneth Reitz
<me@kennethreitz.com>
Fri, 24 Feb 2012 05:44:01 +0000
(
00:44
-0500)
committer
Kenneth Reitz
<me@kennethreitz.com>
Fri, 24 Feb 2012 05:44:01 +0000
(
00:44
-0500)
requests/utils.py
patch
|
blob
|
history
diff --git
a/requests/utils.py
b/requests/utils.py
index 106c7d8932e5c32163680b16c82d200628b3a506..f960d315839ff603e54f4efdfb9b1ae6089e27b9 100644
(file)
--- a/
requests/utils.py
+++ b/
requests/utils.py
@@
-50,7
+50,7
@@
def get_netrc_auth(url):
# Return with login / password
login_i = (0 if _netrc[0] else 1)
return (_netrc[login_i], _netrc[2])
- except
NetrcParseError, IOError
:
+ except
(NetrcParseError, IOError)
:
# If there was a parsing error or a permissions issue reading the file,
# we'll just skip netrc auth
pass