small whitespace fixes

This commit is contained in:
Mike Fährmann
2015-04-11 16:22:15 +02:00
parent 593a29b677
commit 3c6161eea7
3 changed files with 5 additions and 5 deletions

View File

@@ -24,4 +24,4 @@ class DanbooruExtractor(JSONBooruExtractor):
def __init__(self, match, config):
JSONBooruExtractor.__init__(self, match, config, info)
self.api_url = "https://danbooru.donmai.us/posts.json"
self.api_url = "https://danbooru.donmai.us/posts.json"

View File

@@ -25,4 +25,4 @@ class E621Extractor(JSONBooruExtractor):
def __init__(self, match, config):
JSONBooruExtractor.__init__(self, match, config, info)
self.api_url = "https://e621.net/post/index.json"
self.api_url = "https://e621.net/post/index.json"

View File

@@ -24,11 +24,11 @@ class GelbooruExtractor(XMLBooruExtractor):
def __init__(self, match, config):
XMLBooruExtractor.__init__(self, match, config, info)
self.api_url = "http://gelbooru.com/"
self.params = {"page":"dapi", "s":"post", "q":"index", "tags":self.tags}
self.api_url = "http://gelbooru.com/"
self.params = {"page":"dapi", "s":"post", "q":"index", "tags":self.tags}
def update_page(self, reset=False):
if reset is False:
self.params["pid"] += 1
else:
self.params["pid"] = 0
self.params["pid"] = 0