Skip to content

Commit 645a126

Browse files
author
MarcoFalke
committed
Merge #15351: Update linearize-hashes.py
7fdb92e Update linearize-hashes.py (OverlordQ) Pull request description: Fix class case issue. Tree-SHA512: 42d26e38b75b6b419ae4a9ca5c110d4ced0f7c5db997a64c8ab5dfc25dc228008349b6423c20ef4e396a773ff31f1f3f0092331c5e89748216e253e4d8337e9a
2 parents 5029e94 + 7fdb92e commit 645a126

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)