summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-03-17 17:23:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-03-17 17:23:14 (GMT)
commit809383ea0d70e0a37c5f401140305b4f61006749 (patch)
treebe7275cac33cee6bab23feb1111c780376fa07f7
parentc833f7ea0fcf3c566762c76683d8be0b7db60aeb (diff)
parent10959076247b1e604ea60d1fcaa3801643f0b3e8 (diff)
downloadcpython-809383ea0d70e0a37c5f401140305b4f61006749.zip
cpython-809383ea0d70e0a37c5f401140305b4f61006749.tar.gz
cpython-809383ea0d70e0a37c5f401140305b4f61006749.tar.bz2
Remove stray semicolon
-rw-r--r--Lib/threading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index d907c89..5d68a9e 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -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):