get_netrc_auth: code cleanup

* Stop iterating as soon as we find a netrc file
* More obvious return None
This commit is contained in:
Chris Adams
2014-01-07 12:23:11 -05:00
parent 0b41cec7a4
commit a80bd7708d
+3 -2
View File
@@ -82,12 +82,13 @@ def get_netrc_auth(url):
# https://github.com/kennethreitz/requests/issues/1846
return
if os.path.exists(loc) and not netrc_path:
if os.path.exists(loc):
netrc_path = loc
break
# Abort early if there isn't one.
if netrc_path is None:
return netrc_path
return
ri = urlparse(url)