Skip to content
Snippets Groups Projects
Commit 118c2ec6 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Added missing line return.

parent 90d4d2a7
No related branches found
No related tags found
No related merge requests found
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment