Skip to content

Commit

Permalink
tidy comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hornc committed Jan 28, 2016
1 parent 89efbf0 commit f1061d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openlibrary/plugins/upstream/utils.py
Expand Up @@ -587,9 +587,9 @@ def _get_recent_changes2():

def is_ignored(c):
return (
# Gio: c.kind=='update' allow us to ignore update recent changes on people
# c.kind=='update' allow us to ignore update recent changes on people
c.kind == 'update' or
# Charles: ignore change if author has been deleted (e.g. spammer)
# ignore change if author has been deleted (e.g. spammer)
(c.author and c.author.type.key == '/type/delete'))

def render(c):
Expand Down

0 comments on commit f1061d3

Please sign in to comment.