[trivial] fixed typo in vpn/forms.py

(due the hard string freeze only fixed in master)

Change-Id: Ifa6381a8a057c515629a4b06a4c91ff77c64c215
This commit is contained in:
Reik Keutterling 2018-02-13 13:17:03 +01:00
parent f87145e7f7
commit 3aaa18a638
1 changed files with 2 additions and 2 deletions

View File

@ -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)