summaryrefslogtreecommitdiff
path: root/rbtools
diff options
context:
space:
mode:
authorChristian Hammond <chipx86@chipx86.com>2009-12-06 23:19:49 -0800
committerChristian Hammond <chipx86@chipx86.com>2009-12-06 23:19:49 -0800
commitb94f94b12f1aff7f35a2f58adfbb7b686044b995 (patch)
treeeaf2720f8e580fab87a46a4ea17f308a9769d479 /rbtools
parent2c49710c08f9ab2498b941e93a4297e5af679e71 (diff)
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/
Diffstat (limited to 'rbtools')
-rwxr-xr-xrbtools/postreview.py2
1 files changed, 1 insertions, 1 deletions
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,