Update http:// to https:// in code
Where https is working, code was updated to use it.
This commit is contained in:
parent
9852064e35
commit
f4ede5339f
7 changed files with 7 additions and 7 deletions
|
|
@ -445,7 +445,7 @@ class adler32_constructor(object):
|
|||
def __init__(self, arg=''):
|
||||
self._value = adler32(arg) & 0xffffffffL
|
||||
#the bitwise and works around a bug in some versions of python
|
||||
#see: http://bugs.python.org/issue1202
|
||||
#see: https://bugs.python.org/issue1202
|
||||
|
||||
def update(self, arg):
|
||||
self._value = adler32(arg, self._value) & 0xffffffffL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue