Update http:// to https:// in code

Where https is working, code was updated to use it.
This commit is contained in:
Tomas Kopecek 2016-12-19 10:38:51 +01:00 committed by Mike McLean
parent 9852064e35
commit f4ede5339f
7 changed files with 7 additions and 7 deletions

View file

@ -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