diff options
| author | John Tran <jtran@attinteractive.com> | 2011-07-17 22:07:07 +0000 |
|---|---|---|
| committer | John Tran <jtran@attinteractive.com> | 2011-07-17 22:07:07 +0000 |
| commit | b0a02feb7bd25380a75b83344e0ac3210a168387 (patch) | |
| tree | 8009a0ed95c8f148eb256e4a00fc2cbbf80ddfc8 /nova/api | |
| parent | 7498fa608def9613552cf0e26dcb03fddf7b298d (diff) | |
changed to avoid localization test failure
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/ec2/cloud.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py index 5c0c79429..4923a7666 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -626,8 +626,8 @@ class CloudController(object): for values_for_rule in rulesvalues: values_for_rule['parent_group_id'] = security_group.id if self._security_group_rule_exists(security_group, values_for_rule): - raise exception.ApiError(_('%s - This rule already exists in group %s') - % (values_for_rule, group_name)) + raise exception.ApiError(_('%s - This rule already exists in group') + % values_for_rule) postvalues.append(values_for_rule) for values_for_rule in postvalues: |
