Commit 10959076 authored by Antoine Pitrou's avatar Antoine Pitrou

Remove stray semicolon

parent f93d3dfc
......@@ -1143,7 +1143,7 @@ class Thread:
if not self._initialized:
raise RuntimeError("Thread.__init__() not called")
if self._started.is_set():
raise RuntimeError("cannot set daemon status of active thread");
raise RuntimeError("cannot set daemon status of active thread")
self._daemonic = daemonic
def isDaemon(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment