Small (but important) fixes

This commit is contained in:
Hugo Trippaers 2014-08-19 17:14:05 +02:00 committed by wilderrodrigues
parent 574fa2c0a0
commit 683e660d60
2 changed files with 3 additions and 2 deletions

View File

@ -28,6 +28,7 @@ import os.path
from cs_ip import merge
import CsHelper
from CsNetfilter import CsNetfilters
from fcntl import flock, LOCK_EX, LOCK_UN
fw = []

View File

@ -39,9 +39,9 @@ run.wait()
if run.returncode:
print "stdout >>"
print run.stdout
print run.stdout.read()
print "stderr >>"
print run.stderr
print run.stderr.read()
else:
print "Convergence is achieved - you have been assimilated!"