From a5a7c8c0ba8550ccdc66ef48daf8ca4a39420546 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Wed, 25 Jan 2012 15:38:46 -0800 Subject: [PATCH] fix conf parsing code to not filter out whitespace --- bin/storm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/storm b/bin/storm index b30d15ec6..b8323fbdc 100755 --- a/bin/storm +++ b/bin/storm @@ -53,7 +53,7 @@ def confvalue(name, extrapaths): for line in lines: tokens = line.split(" ") if tokens[0] == "VALUE:": - return tokens[1] + return " ".join(tokens[1:]) def print_localconfvalue(name): print name + ": " + confvalue(name, [CONF_DIR])