summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Herkt <lachs0r@srsfckn.biz>2017-11-08 11:20:46 +0100
committerMartin Herkt <lachs0r@srsfckn.biz>2017-11-08 11:20:46 +0100
commit5608c72e03319d39c25fd3ce6403f52f649d47d4 (patch)
tree668e2b334b6ead26a95d9123ab7f9b31733f707c
parentb2d830e2aaca9344593c9dc40c06b3713ccc1b5e (diff)
Fix indent error in querybl
-rwxr-xr-xfhost.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fhost.py b/fhost.py
index 283c9a2..622298f 100755
--- 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()