From ec48d25afc2dedb345393b26a72872a161bed9b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 22 Apr 2017 11:14:20 +0200 Subject: [PATCH] [pawoo] fix extraction results --- gallery_dl/extractor/pawoo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gallery_dl/extractor/pawoo.py b/gallery_dl/extractor/pawoo.py index 5f9a29b5..3bf72691 100644 --- a/gallery_dl/extractor/pawoo.py +++ b/gallery_dl/extractor/pawoo.py @@ -42,7 +42,8 @@ class PawooExtractor(Extractor): for key in ("favourites_count", "reblogs_count", "reblog", "mentions"): del status[key] account = status["account"] - for key in ("followers_count", "following_count", "statuses_count"): + for key in ("followers_count", "following_count", "statuses_count", + "oauth_authentications"): del account[key] attachments = status["media_attachments"] del status["media_attachments"]