From 3c47dfb6ef9fa3fa79ec94ee5154de6e77887d7c Mon Sep 17 00:00:00 2001 From: Daniel Steglich Date: Mon, 21 Sep 2015 21:43:05 +0200 Subject: [PATCH] Minor coding styleguide fix - fixed a pep8 error (line too long) --- plinth/network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plinth/network.py b/plinth/network.py index 62db59daa..3e5a6bea8 100644 --- a/plinth/network.py +++ b/plinth/network.py @@ -368,8 +368,8 @@ def get_active_connection(connection_uuid): raise ConnectionNotFound(connection_uuid) -def _update_common_settings(connection, connection_uuid, name, type_, interface, - zone): +def _update_common_settings(connection, connection_uuid, name, type_, + interface, zone): """Create/edit basic settings for network manager connections. Return newly created connection object if connection is None.