From 118c2ec6c16ad5520906f92d897267fde9e4da62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu> Date: Thu, 9 Feb 2017 15:02:27 +0100 Subject: [PATCH] Added missing line return. --- 1.Base/4.Proxy_settings/0_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1.Base/4.Proxy_settings/0_setup.py b/1.Base/4.Proxy_settings/0_setup.py index 5f136b7d..a84b72d3 100644 --- a/1.Base/4.Proxy_settings/0_setup.py +++ b/1.Base/4.Proxy_settings/0_setup.py @@ -23,9 +23,9 @@ def setup(interactive=True): apt_proxy_path = '/etc/apt/apt.conf.d/proxy' apt_proxy = '' if http_proxy: - apt_proxy += 'Acquire::http::Proxy "%s";' % http_proxy + apt_proxy += 'Acquire::http::Proxy "%s";\n' % http_proxy if https_proxy: - apt_proxy += 'Acquire::https::Proxy "%s";' % https_proxy + apt_proxy += 'Acquire::https::Proxy "%s";\n' % https_proxy # write changes files = ( (environment_path, environment), -- GitLab