diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2019-07-08 13:53:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2019-07-08 13:53:15 -0300 |
commit | e6bcfe8364968d3be47e97ee9f4a08a37caa7daf (patch) | |
tree | 776e3f47284b257ff6658d874cc50d1011c7d5e1 | |
parent | a005d2aa99a8be5b87d81935ff4ad6df400c2c46 (diff) | |
download | grab-queue-e6bcfe8364968d3be47e97ee9f4a08a37caa7daf.tar.gz grab-queue-e6bcfe8364968d3be47e97ee9f4a08a37caa7daf.tar.bz2 |
Rollback and minor fix
-rwxr-xr-x | grab-queue | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 |