Commit 66b5fe00 by tarokkk

one: Changed id to integer

parent cc582cc1
...@@ -115,7 +115,7 @@ def vm_show(request, iid): ...@@ -115,7 +115,7 @@ def vm_show(request, iid):
'uri': inst.get_connect_uri(), 'uri': inst.get_connect_uri(),
'state': inst.state, 'state': inst.state,
'name': inst.name, 'name': inst.name,
'id': iid, 'id': int(iid),
'age': inst.get_age(), 'age': inst.get_age(),
'instances': _list_instances(request), 'instances': _list_instances(request),
'i': inst, 'i': inst,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment