summaryrefslogtreecommitdiff
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-03-17 18:22:41 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2014-03-17 18:22:41 +0100
commit10959076247b1e604ea60d1fcaa3801643f0b3e8 (patch)
tree1be98e904dbc7f40fc01a078080072f6ac26b60e /Lib/threading.py
parentf93d3dfc501a8e554fa516508f327aaf8ff7e35d (diff)
downloadcpython-git-10959076247b1e604ea60d1fcaa3801643f0b3e8.tar.gz
Remove stray semicolon
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index d907c89f3f..5d68a9e513 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):