diff mercurial/hgweb/server.py @ 15223:fc035e5370ca

pyflakes: clean up some import noise
author Matt Mackall <mpm@selenic.com>
date Tue, 11 Oct 2011 23:16:05 -0500
parents 16e5271b216f
children e7cfe3587ea4
line wrap: on
line diff
--- a/mercurial/hgweb/server.py	Tue Oct 11 20:21:13 2011 -0500
+++ b/mercurial/hgweb/server.py	Tue Oct 11 23:16:05 2011 -0500
@@ -246,6 +246,7 @@
 
 try:
     from threading import activeCount
+    activeCount() # silence pyflakes
     _mixin = SocketServer.ThreadingMixIn
 except ImportError:
     if util.safehasattr(os, "fork"):