From 3c10d1e64faeb67b41e7aa501b21252e357a4564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Sat, 9 Nov 2013 10:51:05 +0200 Subject: [PATCH] Removed useless comment. Refs #21172 --- django/test/testcases.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/django/test/testcases.py b/django/test/testcases.py index d2c1735763..9598bd182a 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -1069,9 +1069,6 @@ class LiveServerThread(threading.Thread): self.is_ready.set() def terminate(self): - """ - Shuts down live WSGI server. - """ if hasattr(self, 'httpd'): # Stop the WSGI server self.httpd.shutdown()