From: Antoine Pitrou Date: Mon, 17 Mar 2014 17:22:41 +0000 (+0100) Subject: Remove stray semicolon X-Git-Tag: v3.4.1rc1~230 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10959076247b1e604ea60d1fcaa3801643f0b3e8;p=python Remove stray semicolon --- 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):