Fixes an issue with auth and redirects

This commit is contained in:
David Fischer
2011-11-02 23:29:31 -07:00
parent f5592ceb48
commit eaf1264879
+1
View File
@@ -338,6 +338,7 @@ class Request(object):
r = auth_func(self, *auth_args)
self.__dict__.update(r.__dict__)
self.auth = auth_args
# Build the Urllib2 Request.
req = _Request(url, data=data, headers=headers, method=self.method)