Skip to content

Commit

Permalink
Don't use unasigned variable
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrodob committed Aug 5, 2015
1 parent aab85e3 commit 2202f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybossa/cache/users.py
Expand Up @@ -85,7 +85,7 @@ def get_leaderboard(n, user_id=None):
fullname=u.fullname,
email_addr=u.email_addr,
info=u.info,
created=row.created,
created=u.created,
score=-1)
for row in user_rank: # pragma: no cover
user = dict(
Expand Down

0 comments on commit 2202f1e

Please sign in to comment.