From 1b09267876e51c0456c062e10ab70c0f7eba6c34 Mon Sep 17 00:00:00 2001 From: ryuslash Date: Tue, 9 Feb 2010 02:10:17 +0100 Subject: configuration settings and startfile Configuration Settings can now be changed with the -e command line argument execution of 4grab has been moved to 4grab.py, but should also still work with download.py --- download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'download.py') diff --git a/download.py b/download.py index 003e718..7ab1a43 100644 --- a/download.py +++ b/download.py @@ -19,7 +19,7 @@ def get_thread_links(baseurl): for pagenum in t: progress.show_progress(i) - url = base_url + pagenum + url = baseurl + pagenum tries = 10 while tries > 0: try: @@ -49,7 +49,7 @@ def get_image_links(baseurl, t = []): for link in t: progress.show_progress(i) - img_url = base_url + link + img_url = baseurl + link tries = 10 while tries > 0: try: -- cgit v1.2.3-54-g00ecf