summaryrefslogtreecommitdiffstats
path: root/gallery_dl/downloader/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/downloader/common.py')
-rw-r--r--gallery_dl/downloader/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gallery_dl/downloader/common.py b/gallery_dl/downloader/common.py
index 6e5cd4c..596c956 100644
--- a/gallery_dl/downloader/common.py
+++ b/gallery_dl/downloader/common.py
@@ -30,7 +30,7 @@ class DownloaderBase():
def config(self, key, default=None):
"""Interpolate downloader config value for 'key'"""
- return config.interpolate(("downloader", self.scheme, key), default)
+ return config.interpolate(("downloader", self.scheme), key, default)
def download(self, url, pathfmt):
"""Write data from 'url' into the file specified by 'pathfmt'"""