projects
/
xonotic
/
xonstat.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f15162
)
Negate the blank game check. Dumb.
author
Ant Zucaro <azucaro@gmail.com>
Thu, 22 Dec 2011 13:24:38 +0000
(08:24 -0500)
committer
Ant Zucaro <azucaro@gmail.com>
Thu, 22 Dec 2011 13:24:38 +0000
(08:24 -0500)
xonstat/views/submission.py
patch
|
blob
|
history
diff --git
a/xonstat/views/submission.py
b/xonstat/views/submission.py
index 1f72df59b2e32ee429bef5c9cd1687c35800d87d..f07194202342d2050b4bfd0d618595db5b5dcf93 100755
(executable)
--- a/
xonstat/views/submission.py
+++ b/
xonstat/views/submission.py
@@
-34,7
+34,7
@@
def is_blank_game(players):
if key.startswith('acc-'):
\r
flg_acc_events = True
\r
\r
- return
flg_nonzero_score and flg_acc_events
\r
+ return
not (flg_nonzero_score and flg_acc_events)
\r
\r
def get_remote_addr(request):
\r
"""Get the Xonotic server's IP address"""
\r