From 4bbd65207a7a435ce982d65f773dd2fc479b0ff7 Mon Sep 17 00:00:00 2001 From: Edward Hope-Morley Date: Wed, 8 Oct 2014 17:05:45 +0100 Subject: [PATCH] fixes missing newline in conf --- hooks/rabbit_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/rabbit_utils.py b/hooks/rabbit_utils.py index a049d185..814a30ad 100644 --- a/hooks/rabbit_utils.py +++ b/hooks/rabbit_utils.py @@ -370,7 +370,7 @@ def get_rabbit_password(username, password=None): def bind_ipv6_interface(): - out = "RABBITMQ_SERVER_START_ARGS='-proto_dist inet6_tcp'" + out = "RABBITMQ_SERVER_START_ARGS='-proto_dist inet6_tcp'\n" with open(ENV_CONF, 'wb') as conf: conf.write(''.join(out))