diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-03-17 17:22:41 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-03-17 17:22:41 (GMT) |
commit | 10959076247b1e604ea60d1fcaa3801643f0b3e8 (patch) | |
tree | 1be98e904dbc7f40fc01a078080072f6ac26b60e /Lib/threading.py | |
parent | f93d3dfc501a8e554fa516508f327aaf8ff7e35d (diff) | |
download | cpython-10959076247b1e604ea60d1fcaa3801643f0b3e8.zip cpython-10959076247b1e604ea60d1fcaa3801643f0b3e8.tar.gz cpython-10959076247b1e604ea60d1fcaa3801643f0b3e8.tar.bz2 |
Remove stray semicolon
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 2 |
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): |