Skip to content

Commit

Permalink
fix conf parsing code to not filter out whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Marz committed Jan 25, 2012
1 parent e159c3a commit a5a7c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/storm
Expand Up @@ -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])
Expand Down

0 comments on commit a5a7c8c

Please sign in to comment.