Skip to content

Commit 7fdb92e

Browse files
authored
Update linearize-hashes.py
Fix class case issue.
1 parent 5029e94 commit 7fdb92e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/linearize/linearize-hashes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
88
#
99

10-
from http.client import HttpConnection
10+
from http.client import HTTPConnection
1111
import json
1212
import re
1313
import base64
@@ -27,7 +27,7 @@ def __init__(self, host, port, username, password):
2727
authpair = "%s:%s" % (username, password)
2828
authpair = authpair.encode('utf-8')
2929
self.authhdr = b"Basic " + base64.b64encode(authpair)
30-
self.conn = HttpConnection(host, port=port, timeout=30)
30+
self.conn = HTTPConnection(host, port=port, timeout=30)
3131

3232
def execute(self, obj):
3333
try:

0 commit comments

Comments
 (0)