| |
@@ -60,7 +60,6 @@
|
| |
|
| |
return updates
|
| |
|
| |
-
|
| |
def process_update(update):
|
| |
"""
|
| |
Cleans up single update dictionary to contain only data frontend needs
|
| |
@@ -77,7 +76,7 @@
|
| |
"url": update["url"],
|
| |
"status": "%s→%s" % (update["status"], update["request"]) if update["request"] else update["status"],
|
| |
"karma": update["karma"],
|
| |
- "comments": len(update["comments"])
|
| |
+ "comments": len([c for c in update["comments"] if c["user"]["name"] != "bodhi"])
|
| |
}
|
| |
|
| |
|
| |
Fixes https://pagure.io/fedora-qa/packager_dashboard/issue/75