summaryrefslogtreecommitdiff
path: root/rbtools/postreview.py
diff options
context:
space:
mode:
Diffstat (limited to 'rbtools/postreview.py')
-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,