From f38a6fb596b6290f00dddcd3bb495ad6b4fa83c9 Mon Sep 17 00:00:00 2001 From: hellerve Date: Sun, 9 Apr 2017 17:44:39 +0200 Subject: [PATCH] vbump --- setup.py | 4 ++-- slideslurp/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b33b117..5ac8db5 100644 --- a/setup.py +++ b/setup.py @@ -6,13 +6,13 @@ from setuptools import setup setup( name = 'slideslurp', - version = '0.0.5', + version = '0.0.6', description = 'SlideShare to PDF', author = 'Veit Heller', author_email = 'veit@veitheller.de', license = 'MIT License', url = 'https://github.com/hellerve/slideslurp', - download_url = 'https://github.com/hellerve/slideslurp/tarball/0.0.5', + download_url = 'https://github.com/hellerve/slideslurp/tarball/0.0.6', packages = find_packages('.'), install_requires=[ "bs4", diff --git a/slideslurp/__init__.py b/slideslurp/__init__.py index a0aad4b..d76d8a7 100644 --- a/slideslurp/__init__.py +++ b/slideslurp/__init__.py @@ -25,7 +25,7 @@ def main(): res = requests.get(args.url[0]) tree = bs4.BeautifulSoup(res.text, "html.parser") - c = canvas.Canvas(args.file) + c = canvas.Canvas(args.output) for img in tree.findAll("img", class_="slide_image"): img_url = img.attrs["data-full"]