We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9955d9 commit ea28a4cCopy full SHA for ea28a4c
1 file changed
cmscontrib/SpoolExporter.py
@@ -3,7 +3,7 @@
3
4
# Contest Management System - http://cms-dev.github.io/
5
# Copyright © 2010-2012 Giovanni Mascellani <mascellani@poisson.phc.unipi.it>
6
-# Copyright © 2010-2014 Stefano Maggiolo <s.maggiolo@gmail.com>
+# Copyright © 2010-2015 Stefano Maggiolo <s.maggiolo@gmail.com>
7
# Copyright © 2010-2012 Matteo Boscariol <boscarim@hotmail.com>
8
#
9
# This program is free software: you can redistribute it and/or modify
@@ -194,6 +194,8 @@ def export_ranking(self):
194
is_partial = False
195
for task in self.contest.tasks:
196
for user in self.contest.users:
197
+ if user.hidden:
198
+ continue
199
score, partial = task_score(user, task)
200
is_partial = is_partial or partial
201
task_scores[task.id][user.username] = score
0 commit comments