aboutsummaryrefslogtreecommitdiff
path: root/grab-queue
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-07-08 13:53:15 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-07-08 13:53:15 -0300
commite6bcfe8364968d3be47e97ee9f4a08a37caa7daf (patch)
tree776e3f47284b257ff6658d874cc50d1011c7d5e1 /grab-queue
parenta005d2aa99a8be5b87d81935ff4ad6df400c2c46 (diff)
downloadgrab-queue-e6bcfe8364968d3be47e97ee9f4a08a37caa7daf.tar.gz
grab-queue-e6bcfe8364968d3be47e97ee9f4a08a37caa7daf.tar.bz2
Rollback and minor fix
Diffstat (limited to 'grab-queue')
-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