Bug fix to save thumbnail file into local folder.

This commit is contained in:
Graham 2019-07-17 10:55:19 +08:00
Родитель 94b98e18bf
Коммит 8f357bd7c1
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -64,6 +64,7 @@ height = 50
if is_url(url):
analysis = client.generate_thumbnail(width, height, url)
sname = re.sub('\.(\w+)$', r'-thumbnail.\1', os.path.basename(urlparse(url).path))
sname = os.path.join(get_cmd_cwd(), sname)
else:
path = os.path.join(get_cmd_cwd(), url)
with open(path, 'rb') as fstream: