Fix indent error in querybl

This commit is contained in:
Martin Herkt 2017-11-08 11:20:46 +01:00
parent b2d830e2aa
commit 5608c72e03
No known key found for this signature in database
GPG Key ID: C24B9CD04DC6AE7F
1 changed files with 2 additions and 2 deletions

View File

@ -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()