aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/reactor.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/extractor/reactor.py')
-rw-r--r--gallery_dl/extractor/reactor.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/gallery_dl/extractor/reactor.py b/gallery_dl/extractor/reactor.py
index bbbdd3f..04fe581 100644
--- a/gallery_dl/extractor/reactor.py
+++ b/gallery_dl/extractor/reactor.py
@@ -37,7 +37,6 @@ class ReactorExtractor(Extractor):
def items(self):
data = self.metadata()
- yield Message.Version, 1
yield Message.Directory, data
for post in self.posts():
for image in self._parse_post(post):
@@ -197,7 +196,6 @@ class ReactorPostExtractor(ReactorExtractor):
self.post_id = match.group(2)
def items(self):
- yield Message.Version, 1
post = self.request(self.url).text
pos = post.find('class="uhead">')
for image in self._parse_post(post[pos:]):