Skip to content

Commit

Permalink
ignore comma
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosp420 committed May 29, 2017
1 parent f6e6069 commit 3979a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manolo/apps/visitors/management/commands/run_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def run_statistics():
all_visitor_names_unique = set(all_visitor_names)
print(len(all_visitor_names_unique))

visitors = Visitor.objects.all().values_list(
visitors = Visitor.objects.all().exclude(full_name=",").values_list(
"full_name",
).annotate(
the_count=Count("full_name"),
Expand Down

0 comments on commit 3979a87

Please sign in to comment.