Support loading remote images over HTTPS
Thomas Ross
3 years ago
7 | 7 |
|
8 | 8 |
CHANGES
|
9 | 9 |
+ Convert to Python 3.
|
|
10 |
+ Support loading remote images over HTTPS
|
10 | 11 |
|
11 | 12 |
TRANSLATIONS
|
12 | 13 |
+ Updated French translations. (Thanks Otyugh <otyugh@riseup.net>)
|
5977 | 5977 |
inputlist[itemnum] = inputlist[itemnum][: (len(inputlist[itemnum]) - 1)]
|
5978 | 5978 |
if not (
|
5979 | 5979 |
inputlist[itemnum].startswith("http://")
|
|
5980 |
or inputlist[itemnum].startswith("https://")
|
5980 | 5981 |
or inputlist[itemnum].startswith("ftp://")
|
5981 | 5982 |
):
|
5982 | 5983 |
inputlist[itemnum] = os.path.abspath(inputlist[itemnum])
|