0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

avoid error message on Windows builds

This commit is contained in:
Eric Milkie 2012-04-20 14:10:07 -04:00
parent 18c952897b
commit b85ad82930

View File

@ -31,7 +31,10 @@ def shouldKill( c ):
def killprocs( signal="" ):
killed = 0
if sys.platform == 'win32':
return killed
l = utils.getprocesslist()
print( "num procs:" + str( len( l ) ) )
if len(l) == 0: