Skip to content

Commit caa0deb

Browse files
authored
Merge pull request #5796 from radarhere/https
Changed URLs to https
2 parents ff1cb39 + 97ed2ec commit caa0deb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/PIL/ImageCms.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
a Python / PIL interface to the littleCMS ICC Color Management System
3535
Copyright (C) 2002-2003 Kevin Cazabon
3636
37-
http://www.cazabon.com
37+
https://www.cazabon.com
3838
39-
pyCMS home page: http://www.cazabon.com/pyCMS
39+
pyCMS home page: https://www.cazabon.com/pyCMS
4040
littleCMS home page: https://www.littlecms.com
4141
(littleCMS is Copyright (C) 1998-2001 Marti Maria)
4242

src/PIL/ImageOps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def fit(image, size, method=Image.BICUBIC, bleed=0.0, centering=(0.5, 0.5)):
439439

440440
# by Kevin Cazabon, Feb 17/2000
441441
442-
# http://www.cazabon.com
442+
# https://www.cazabon.com
443443

444444
# ensure centering is mutable
445445
centering = list(centering)

src/_imagingcms.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
* a Python / PIL interface to the littleCMS ICC Color Management System
44
* Copyright (C) 2002-2003 Kevin Cazabon
55
6-
* http://www.cazabon.com
6+
* https://www.cazabon.com
77
* Adapted/reworked for PIL by Fredrik Lundh
88
* Copyright (c) 2009 Fredrik Lundh
99
* Updated to LCMS2
1010
* Copyright (c) 2013 Eric Soroos
1111
*
12-
* pyCMS home page: http://www.cazabon.com/pyCMS
13-
* littleCMS home page: http://www.littlecms.com
12+
* pyCMS home page: https://www.cazabon.com/pyCMS
13+
* littleCMS home page: https://www.littlecms.com
1414
* (littleCMS is Copyright (C) 1998-2001 Marti Maria)
1515
*
1616
* Originally released under LGPL. Graciously donated to PIL in
@@ -23,7 +23,7 @@ pyCMS\n\
2323
a Python / PIL interface to the littleCMS ICC Color Management System\n\
2424
Copyright (C) 2002-2003 Kevin Cazabon\n\
2525
26-
http://www.cazabon.com\n\
26+
https://www.cazabon.com\n\
2727
"
2828

2929
#define PY_SSIZE_T_CLEAN

0 commit comments

Comments
 (0)