aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgrab-queue6
1 files changed, 1 insertions, 5 deletions
diff --git a/grab-queue b/grab-queue
index 7ea4bde..19397d4 100755
--- a/grab-queue
+++ b/grab-queue
@@ -78,11 +78,7 @@ class DownloadMultiple:
# Other opts: -q --show-progress -O
downloader_bin = self.downloader.split(' ')[0]
if 'wget' in downloader_bin and local_filename[-1] != '/':
- self_downloader += '-O ' + local_filename
-
- # FIXME: --import-ignores from the previous grab
- if 'grab-site' in downloader_bin:
- self_downloader += ''
+ self.downloader += '-O ' + local_filename
# Run command
cmd = 'cd ' + folder + ' && ' + self.downloader + ' ' + url