X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=clientbin%2FsfiListNodes.py;h=13377c9ac7cca9d701f749b3ca2cd92a89c9edc4;hb=31cc4fa991896f000abb106916662923f37bc3a6;hp=17cb3414a3f6106dc656527785902b0c5628f7d6;hpb=cedf37c8661ec0b05349274962bf2db9cfa6a24d;p=sfa.git diff --git a/clientbin/sfiListNodes.py b/clientbin/sfiListNodes.py index 17cb3414..13377c9a 100755 --- a/clientbin/sfiListNodes.py +++ b/clientbin/sfiListNodes.py @@ -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