From 10959076247b1e604ea60d1fcaa3801643f0b3e8 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 17 Mar 2014 18:22:41 +0100 Subject: [PATCH] Remove stray semicolon --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.50.1