PEP8 compliance

This commit is contained in:
Yax 2015-05-18 13:23:24 +02:00
parent c9307935db
commit 6db8fac605
6 changed files with 30 additions and 34 deletions

View file

@ -22,9 +22,9 @@ def query_comments():
logger.info('retrieve comments for token %s, url %s' % (token, url))
for comment in Comment.select(Comment).join(Site).where(
(Comment.url == url) &
(Comment.published.is_null(False)) &
(Site.token == token)).order_by(+Comment.published):
(Comment.url == url) &
(Comment.published.is_null(False)) &
(Site.token == token)).order_by(+Comment.published):
d = {}
d['author'] = comment.author_name
d['content'] = comment.content
@ -50,9 +50,9 @@ def get_comments_count():
token = request.args.get('token', '')
url = request.args.get('url', '')
count = Comment.select(Comment).join(Site).where(
(Comment.url == url) &
(Comment.published.is_null(False)) &
(Site.token == token)).count()
(Comment.url == url) &
(Comment.published.is_null(False)) &
(Site.token == token)).count()
r = jsonify({'count': count})
r.status_code = 200
except:

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
import logging
from flask import request, jsonify, abort
from flask import request, abort
from app import app
from app.services import processor