From b94f94b12f1aff7f35a2f58adfbb7b686044b995 Mon Sep 17 00:00:00 2001 From: Christian Hammond Date: Sun, 6 Dec 2009 23:19:49 -0800 Subject: Fix an invalid class name. A recent patch introduced a refernece to HttpDigestAuthHandler, but this should have been HTTPDigestAuthHandler. Patch by Jason Felice Reviewed at http://reviews.reviewboard.org/r/1290/ --- AUTHORS | 1 + rbtools/postreview.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 277a5ad..04653a9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,6 +12,7 @@ Contributors: * Dana Lacoste * Eric Huss * Flavio Castelli + * Jason Felice * Jeremy Bettis * Lepton Wu * Luke Lu diff --git a/rbtools/postreview.py b/rbtools/postreview.py index c157277..2df2bb0 100755 --- a/rbtools/postreview.py +++ b/rbtools/postreview.py @@ -280,7 +280,7 @@ class ReviewBoardServer(object): cookie_handler = urllib2.HTTPCookieProcessor(self.cookie_jar) password_mgr = ReviewBoardHTTPPasswordMgr(self.url) basic_auth_handler = urllib2.HTTPBasicAuthHandler(password_mgr) - digest_auth_handler = urllib2.HttpDigestAuthHandler(password_mgr) + digest_auth_handler = urllib2.HTTPDigestAuthHandler(password_mgr) opener = urllib2.build_opener(cookie_handler, basic_auth_handler, -- cgit v1.2.3