Skip to content

Commit

Permalink
Add forgotten parens.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Nov 20, 2014
1 parent f869c2a commit 1325d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hotness/consumers.py
Expand Up @@ -156,7 +156,7 @@ def handle_anitya(self, msg):
return

self.publish("update.bug.file", msg=dict(
trigger=msg, bug=dict(bug_id=bz.bug_id))
trigger=msg, bug=dict(bug_id=bz.bug_id)))

self.log.info("Now with #%i, time to do koji stuff" % bz.bug_id)
task_id = self.buildsys.handle(package, upstream, version, bz)
Expand Down Expand Up @@ -184,7 +184,7 @@ def handle_buildsys(self, msg):
url = self.buildsys.url_for(task_id)
self.bugzilla.follow_up(url, state, bug)
self.publish("update.bug.followup", msg=dict(
trigger=msg, bug=dict(bug_id=bz.bug_id))
trigger=msg, bug=dict(bug_id=bz.bug_id)))

def is_monitored(self, package):
""" Returns True if a package is marked as 'monitored' in pkgdb2. """
Expand Down

0 comments on commit 1325d54

Please sign in to comment.