0x0

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 5608c72e03319d39c25fd3ce6403f52f649d47d4
parent b2d830e2aaca9344593c9dc40c06b3713ccc1b5e
Author: Martin Herkt <lachs0r@srsfckn.biz>
Date:   Wed,  8 Nov 2017 11:20:46 +0100

Fix indent error in querybl

Diffstat:
Mfhost.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fhost.py b/fhost.py @@ -527,8 +527,8 @@ def querybl(nsfw=False, removed=False): if nsfw: res = res.filter(File.nsfw_score > app.config["NSFW_THRESHOLD"]) - for f in res: - f.pprint() + for f in res: + f.pprint() if __name__ == "__main__": manager.run()