diff options
| author | Ilya Alekseyev <ilyaalekseyev@acm.org> | 2011-06-27 16:33:01 +0400 |
|---|---|---|
| committer | Ilya Alekseyev <ilyaalekseyev@acm.org> | 2011-06-27 16:33:01 +0400 |
| commit | ef1f4d33fa5763ea602c2fc1098a4b230b86e82b (patch) | |
| tree | 633297f435798bf420ce0094fae803190a797b05 /nova/exception.py | |
| parent | fd3da28b567a66a31f2833a3c00d0b6ccf55eed8 (diff) | |
| download | nova-ef1f4d33fa5763ea602c2fc1098a4b230b86e82b.tar.gz nova-ef1f4d33fa5763ea602c2fc1098a4b230b86e82b.tar.xz nova-ef1f4d33fa5763ea602c2fc1098a4b230b86e82b.zip | |
review issues fixed
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/exception.py b/nova/exception.py index 8230c2b26..8a63a79f2 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -360,11 +360,11 @@ class NoFixedIpsFoundForInstance(NotFound): message = _("Instance %(instance_id)s has zero fixed ips.") -class FloatingIpNotDefined(NotFound): +class FloatingIpNotFound(NotFound): message = _("Floating ip %(floating_ip)s not found") -class FloatingIpNotFound(NotFound): +class FloatingIpNotFoundForFixedAddress(NotFound): message = _("Floating ip not found for fixed address %(fixed_ip)s.") |
