diff --git a/plinth/modules/networks/forms.py b/plinth/modules/networks/forms.py index 69eba6af9..e34ef62b5 100644 --- a/plinth/modules/networks/forms.py +++ b/plinth/modules/networks/forms.py @@ -14,7 +14,7 @@ nm = import_from_gi('NM', '1.0') class ConnectionTypeSelectForm(forms.Form): """Form to select type for new connection.""" connection_type = forms.ChoiceField( - label=_('Connection Type'), + label=_('Connection Type'), widget=forms.RadioSelect, choices=[(key, value) for key, value in network.CONNECTION_TYPE_NAMES.items()])