diff options
author | Dan Prince <dprince@redhat.com> | 2012-03-19 16:05:39 -0400 |
---|---|---|
committer | Dan Prince <dprince@redhat.com> | 2012-03-19 16:05:39 -0400 |
commit | 7f4f6c0bfa45e4bb18c88e796715b286e9d273bf (patch) | |
tree | 454c3d7231a00d71e601287c4f547dfd8656e9b8 /nova | |
parent | 74aa84b0ec5bf406b7cf324bef0267da4e653823 (diff) | |
download | nova-7f4f6c0bfa45e4bb18c88e796715b286e9d273bf.tar.gz nova-7f4f6c0bfa45e4bb18c88e796715b286e9d273bf.tar.xz nova-7f4f6c0bfa45e4bb18c88e796715b286e9d273bf.zip |
Correct accessIPv6 error message.
Fixes LP Bug #959661.
Change-Id: I95d497de1df4d10cfa1213c31cb6bfd120f7c6b3
Diffstat (limited to 'nova')
-rw-r--r-- | nova/api/openstack/compute/servers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/compute/servers.py b/nova/api/openstack/compute/servers.py index 2ea6e51ef..e6a8fdcdb 100644 --- a/nova/api/openstack/compute/servers.py +++ b/nova/api/openstack/compute/servers.py @@ -594,7 +594,7 @@ class Controller(wsgi.Controller): try: socket.inet_pton(socket.AF_INET6, address) except socket.error: - expl = _('accessIPv4 is not proper IPv4 format') + expl = _('accessIPv6 is not proper IPv6 format') raise exc.HTTPBadRequest(explanation=expl) @wsgi.serializers(xml=ServerTemplate) |