X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=clientbin%2FsfiListNodes.py;h=e115b8fcaaa57c497dd675ad353470e2fab2b9e3;hb=f27128bd33db08114f264c4028ae667c962b64c5;hp=17cb3414a3f6106dc656527785902b0c5628f7d6;hpb=6e46a2373bcda1c1793d18936cc40fb39beb149a;p=sfa.git diff --git a/clientbin/sfiListNodes.py b/clientbin/sfiListNodes.py index 17cb3414..e115b8fc 100755 --- a/clientbin/sfiListNodes.py +++ b/clientbin/sfiListNodes.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 import sys @@ -6,11 +6,11 @@ from sfa.client.sfi_commands import Commands from sfa.rspecs.rspec import RSpec -from sfa.planetlab.plxrn import xrn_to_hostname +from sfa.planetlab.plxrn import xrn_to_hostname command = Commands(usage="%prog [options]", - description="List all nodes in the RSpec. " + - "Use this to display the list of nodes on which it is " + + description="List all nodes in the RSpec. " + + "Use this to display the list of nodes on which it is " + "possible to create a slice.") command.prep() @@ -19,14 +19,10 @@ if command.opts.infile: nodes = rspec.version.get_nodes() if command.opts.outfile: sys.stdout = open(command.opts.outfile, 'w') - + for node in nodes: hostname = None if node.get('component_id'): hostname = xrn_to_hostname(node['component_id']) if hostname: - print hostname - - - - + print(hostname)