summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Kearney <josh@jk0.org>2011-08-15 13:35:53 -0500
committerJosh Kearney <josh@jk0.org>2011-08-15 13:35:53 -0500
commitbbd577de616915025e524e330f1991f3f155388c (patch)
treefd69965e39f14c49a12ae37867e93755f26d5f70
parent2c6022a90011bba4618ac6dde06969bea180a2f3 (diff)
Corrected names in TODO/FIXME.
-rw-r--r--nova/virt/xenapi/vm_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py
index b6f471c0f..4a1f07bb1 100644
--- a/nova/virt/xenapi/vm_utils.py
+++ b/nova/virt/xenapi/vm_utils.py
@@ -501,7 +501,7 @@ class VMHelper(HelperBase):
def _check_vdi_size(cls, context, session, instance, vdi_uuid):
size_bytes = cls._get_vdi_chain_size(context, session, vdi_uuid)
- # FIXME(sirp): this was copied directly from compute.manager.py, let's
+ # FIXME(jk0): this was copied directly from compute.manager.py, let's
# refactor this to a common area
instance_type_id = instance['instance_type_id']
instance_type = db.instance_type_get(context,
@@ -853,7 +853,7 @@ def get_vhd_parent_uuid(session, vdi_ref):
def walk_vdi_chain(session, vdi_uuid):
"""Yield vdi_recs for each element in a VDI chain"""
- # TODO: perhaps make get_vhd_parent use this
+ # TODO(jk0): perhaps make get_vhd_parent use this
while True:
vdi_ref = session.get_xenapi().VDI.get_by_uuid(vdi_uuid)
vdi_rec = session.get_xenapi().VDI.get_record(vdi_ref)