Skip to content

Commit

Permalink
Merge pull request #1 from iansharkey/eventname-patch
Browse files Browse the repository at this point in the history
Fix for eventname test
  • Loading branch information
iansharkey committed Jan 7, 2017
2 parents 13e601a + d918191 commit d01ef8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xdist/slavemanage.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def process_from_remote(self, eventcall): # noqa too complex
self._down = True
return
eventname, kwargs = eventcall
if eventname in ("collectionstart"):
if eventname in ("collectionstart",):
self.log("ignoring %s(%s)" % (eventname, kwargs))
elif eventname == "slaveready":
self.notify_inproc(eventname, node=self, **kwargs)
Expand Down

0 comments on commit d01ef8d

Please sign in to comment.