update gallery-dl.conf

pull/30/head
Mike Fährmann 7 years ago
parent 9be8f7e106
commit 3460dc8950
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -59,6 +59,9 @@
"morecomments": false,
"date-min": 0,
"date-max": 253402210800,
"date-format": "",
"id-min": "0",
"id-max": "ZIK0ZJ",
"recursion": 0
},
"flickr":
@ -67,6 +70,27 @@
"access-token-secret": null,
"metadata": false,
"size-max": null
},
"deviantart":
{
"flat": true,
"mature": true
},
"gfycat":
{
"format": "mp4"
},
"imgur":
{
"mp4": true
},
"recursive":
{
"blacklist": ["directlink", "oauth", "recursive", "test"]
},
"oauth":
{
"browser": true
}
},
"output":

@ -172,7 +172,7 @@ class DeviantartGalleryExtractor(DeviantartExtractor):
]
def deviations(self):
if self.api.user_profile(self.user) and self.flat:
if self.flat and self.api.user_profile(self.user):
return self.api.gallery_all(self.user, self.offset)
else:
folders = self.api.gallery_folders(self.user)

@ -54,7 +54,7 @@ skip = [
# don't work on travis-ci
"exhentai", "kissmanga", "mangafox", "dynastyscans", "nijie",
# temporary issues
"fallenangels",
]
# enable selective testing for direct calls
if __name__ == '__main__' and len(sys.argv) > 1:

Loading…
Cancel
Save