From 3aaa18a638fd36a92170a3d29c9546345934a1dd Mon Sep 17 00:00:00 2001 From: Reik Keutterling Date: Tue, 13 Feb 2018 13:17:03 +0100 Subject: [PATCH] [trivial] fixed typo in vpn/forms.py (due the hard string freeze only fixed in master) Change-Id: Ifa6381a8a057c515629a4b06a4c91ff77c64c215 --- neutron_vpnaas_dashboard/dashboards/project/vpn/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neutron_vpnaas_dashboard/dashboards/project/vpn/forms.py b/neutron_vpnaas_dashboard/dashboards/project/vpn/forms.py index b5c23c6..5d8725b 100644 --- a/neutron_vpnaas_dashboard/dashboards/project/vpn/forms.py +++ b/neutron_vpnaas_dashboard/dashboards/project/vpn/forms.py @@ -81,9 +81,9 @@ class UpdateEndpointGroup(forms.SelfHandlingForm): messages.success(request, msg) return endpointgroup except Exception as e: - LOG.info('Failed to update endpint group %(id)s: %(exc)s', + LOG.info('Failed to update endpoint group %(id)s: %(exc)s', {'id': self.initial['endpoint_group_id'], 'exc': e}) - msg = _('Failed to update endpint group %s') % context['name'] + msg = _('Failed to update endpoint group %s') % context['name'] redirect = reverse(self.failure_url) exceptions.handle(request, msg, redirect=redirect)