Inadvertently added verbosity into Node.setIP(); removed.

This commit is contained in:
Bob Lantz
2009-12-14 13:46:36 -08:00
parent fb7658c8ca
commit ac75d7cff4
+1 -1
View File
@@ -199,7 +199,7 @@ class Node( object ):
return intfName
def setIP( self, intf, ip, bits ):
"Set an interface's IP address."
result = self.cmdPrint( [ 'ifconfig', intf, ip + bits, 'up' ] )
result = self.cmd( [ 'ifconfig', intf, ip + bits, 'up' ] )
self.ips[ intf ] = ip
return result
def setHostRoute( self, ip, intf ):