Fixed #10
This commit is contained in:
parent
7efaa6aaf7
commit
4d5ef2850e
|
@ -509,7 +509,7 @@ class Downloader:
|
||||||
|
|
||||||
# Execute command after download
|
# Execute command after download
|
||||||
if self.settings['executeCommand'] != "":
|
if self.settings['executeCommand'] != "":
|
||||||
execute(self.settings['executeCommand'].replace("%folder%", quote(str(self.extrasPath))).replace("%filename%", quote(track['filename'])), shell=True)
|
execute(self.settings['executeCommand'].replace("%folder%", quote(str(self.extrasPath))).replace("%filename%", quote(track['filename'])))
|
||||||
|
|
||||||
def afterDownloadCollection(self, tracks):
|
def afterDownloadCollection(self, tracks):
|
||||||
if not self.extrasPath: self.extrasPath = Path(self.settings['downloadLocation'])
|
if not self.extrasPath: self.extrasPath = Path(self.settings['downloadLocation'])
|
||||||
|
@ -566,7 +566,7 @@ class Downloader:
|
||||||
|
|
||||||
# Execute command after download
|
# Execute command after download
|
||||||
if self.settings['executeCommand'] != "":
|
if self.settings['executeCommand'] != "":
|
||||||
execute(self.settings['executeCommand'].replace("%folder%", quote(str(self.extrasPath))), shell=True)
|
execute(self.settings['executeCommand'].replace("%folder%", quote(str(self.extrasPath))))
|
||||||
|
|
||||||
class DownloadError(Exception):
|
class DownloadError(Exception):
|
||||||
"""Base class for exceptions in this module."""
|
"""Base class for exceptions in this module."""
|
||||||
|
|
Loading…
Reference in New Issue