Skip to content

Commit

Permalink
fix bug in pid_dist
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowdave7 committed Apr 19, 2017
1 parent e898cd1 commit 16f2ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eventmq/jobmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def handle_response(self, resp):
if pid not in self.pid_distribution:
self.pid_distribution[pid] = 1
else:
self.pid_distribution += 1
self.pid_distribution[pid] += 1

def on_request(self, msgid, msg):
"""
Expand Down

0 comments on commit 16f2ca3

Please sign in to comment.