Skip to content

Commit ef7faeb

Browse files
authored
Merge pull request #202 from lhayhurst/patch-1
setDaemon is deprecated
2 parents 1eddaa5 + cb21bae commit ef7faeb

File tree

1 file changed

+1
-1
lines changed
  • pytest-server-fixtures/pytest_server_fixtures

1 file changed

+1
-1
lines changed

pytest-server-fixtures/pytest_server_fixtures/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __init__(self, process, stream, stderr):
104104
self.process = process
105105
self.stream = stream
106106
super(ProcessReader, self).__init__()
107-
self.setDaemon(True)
107+
self.daemon = True
108108

109109
def run(self):
110110
while self.process.poll() is None:

0 commit comments

Comments
 (0)