diff options
| author | Joe Gordon <jogo@cloudscaling.com> | 2013-02-21 11:19:11 -0800 |
|---|---|---|
| committer | Joe Gordon <jogo@cloudscaling.com> | 2013-02-21 11:19:11 -0800 |
| commit | 3d4837e4e7273c509120ee1364fe73ca557a218e (patch) | |
| tree | 53d2f131f622f7fbd7050c6e0956a8e4b92d2063 /nova/db | |
| parent | 0f0a8c6bcce1b230a5719b35089f25e55a1359a8 (diff) | |
| download | nova-3d4837e4e7273c509120ee1364fe73ca557a218e.tar.gz nova-3d4837e4e7273c509120ee1364fe73ca557a218e.tar.xz nova-3d4837e4e7273c509120ee1364fe73ca557a218e.zip | |
Spelling: compatable=>compatible
Change-Id: I9c84f8654e4eb7ccf3631e8c9830f33d90396e08
Diffstat (limited to 'nova/db')
| -rw-r--r-- | nova/db/sqlalchemy/api.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/db/sqlalchemy/api.py b/nova/db/sqlalchemy/api.py index 360bd1b3a..1baa192a3 100644 --- a/nova/db/sqlalchemy/api.py +++ b/nova/db/sqlalchemy/api.py @@ -2818,7 +2818,7 @@ def volume_get_iscsi_target_num(context, volume_id): @require_context def ec2_volume_create(context, volume_uuid, id=None): - """Create ec2 compatable volume by provided uuid.""" + """Create ec2 compatible volume by provided uuid.""" ec2_volume_ref = models.VolumeIdMapping() ec2_volume_ref.update({'uuid': volume_uuid}) if id is not None: @@ -2855,7 +2855,7 @@ def get_volume_uuid_by_ec2_id(context, ec2_id, session=None): @require_context def ec2_snapshot_create(context, snapshot_uuid, id=None): - """Create ec2 compatable snapshot by provided uuid.""" + """Create ec2 compatible snapshot by provided uuid.""" ec2_snapshot_ref = models.SnapshotIdMapping() ec2_snapshot_ref.update({'uuid': snapshot_uuid}) if id is not None: @@ -4640,7 +4640,7 @@ def action_event_get_by_id(context, action_id, event_id): @require_context def ec2_instance_create(context, instance_uuid, id=None): - """Create ec2 compatable instance by provided uuid.""" + """Create ec2 compatible instance by provided uuid.""" ec2_instance_ref = models.InstanceIdMapping() ec2_instance_ref.update({'uuid': instance_uuid}) if id is not None: |
