From aaeddca136bb23503c2b278d2edcb122cf35043f Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 17 Feb 2013 22:39:28 -0500 Subject: [PATCH] On the off chance that something actually tries to parse the sid as a 16-digit hexadecimal number... --- plugins/togo/togo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/togo/togo.py b/plugins/togo/togo.py index e027629..bd82404 100644 --- a/plugins/togo/togo.py +++ b/plugins/togo/togo.py @@ -57,7 +57,7 @@ def null_cookie(name, value): auth_handler = urllib2.HTTPDigestAuthHandler() cj = cookielib.CookieJar() -cj.set_cookie(null_cookie('sid', 'thisisafake')) +cj.set_cookie(null_cookie('sid', 'ADEADDA7EDEBAC1E')) tivo_opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj), auth_handler) -- 2.11.4.GIT