Remove a couple of print's.

This commit is contained in:
Albert Cervera i Areny 2009-03-23 23:14:33 +01:00
parent 41224310da
commit 9cb1e8870a
1 changed files with 0 additions and 2 deletions

View File

@ -51,9 +51,7 @@ class Analyzer:
# Spawn process and return STDOUT
def spawn(self, command, *args):
print "Started: ", command
command = [ command ] + list( args )
process = subprocess.Popen( command , stdout=subprocess.PIPE )
content = process.communicate()[0]
print "Finished: ", command
return content