Removed print statements left over from debugging.

This commit is contained in:
Josh Imhoff
2012-05-21 20:27:47 -04:00
parent 96cd8e9ca0
commit 0eb0b89431
-2
View File
@@ -222,8 +222,6 @@ class RequestsCookieJar(cookielib.CookieJar, collections.MutableMapping):
Python dict of name-value pairs of cookies that meet the requirements."""
dictionary = {}
for cookie in iter(self):
print path
print cookie.path
if (domain == None or cookie.domain == domain) and (path == None
or cookie.path == path):
dictionary[cookie.name] = cookie.value