X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Femuvim%2Fcli%2Fcompute.py;fp=src%2Femuvim%2Fcli%2Fcompute.py;h=c09647569e75b739d8637a872780086a21fc1498;hb=49378157d278717311359ee6691dea6124cc990a;hp=433826ede27ea01b245b553723c2eb6727251df7;hpb=48db0512f82329aa9f46ba9e87efb8a1846ba966;p=osm%2Fvim-emu.git diff --git a/src/emuvim/cli/compute.py b/src/emuvim/cli/compute.py index 433826e..c096475 100755 --- a/src/emuvim/cli/compute.py +++ b/src/emuvim/cli/compute.py @@ -24,7 +24,7 @@ class ZeroRpcClient(object): # call the local method with the same name as the command arg getattr(self, args["command"])(args) else: - print "Command not implemented." + print("Command not implemented.") def start(self, args): nw_list = list() @@ -71,7 +71,7 @@ class ZeroRpcClient(object): "eth0 IP", "eth0 status", "Status"] - print tabulate(table, headers=headers, tablefmt="grid") + print(tabulate(table, headers=headers, tablefmt="grid")) def status(self, args): r = self.c.compute_status( @@ -138,8 +138,8 @@ parser.add_argument( help="Startup command of the container e.g. './start.sh'") parser.add_argument( "--net", dest="network", - help="Network properties of compute instance e.g. \ - '10.0.0.123/8' or '10.0.0.123/8,11.0.0.123/24' for multiple interfaces.") + help="Network properties of a compute instance e.g. \ + '(id=input,ip=10.0.10.3/24),(id=output,ip=10.0.10.4/24)' for multiple interfaces.") parser.add_argument( "--input", "-in", dest="input", help="input interface of the vnf to profile")