From 7d7c1afe2001d7e11d6b98312c12c2a21f88eb05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 5 Oct 2015 17:06:58 +0200 Subject: [PATCH] [deviantart] adjust constructor paramters --- gallery_dl/extractor/deviantart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gallery_dl/extractor/deviantart.py b/gallery_dl/extractor/deviantart.py index 1bd486bb..d090d3e4 100644 --- a/gallery_dl/extractor/deviantart.py +++ b/gallery_dl/extractor/deviantart.py @@ -25,8 +25,8 @@ info = { class DeviantArtExtractor(AsynchronousExtractor): - def __init__(self, match, config): - AsynchronousExtractor.__init__(self, config) + def __init__(self, match): + AsynchronousExtractor.__init__(self) self.session.cookies["agegate_state"] = "1" self.artist = match.group(1)