distil/artifice/helpers.py
adriant 639ae8af66 Removing a useless print statement
Change-Id: I082f899277531db734193a998a23a17c098934de
2014-03-28 17:17:00 +13:00

10 lines
286 B
Python

from novaclient.v1_1 import client
def flavor_name(f_id):
# TODO get from config:
nova = client.Client("admin", "openstack", "demo",
"http://localhost:5000/v2.0",
service_type="compute")
return nova.flavors.get(f_id).name