From cd32d6b000a3df9fde5fa167e3312769696474d8 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Fri, 7 Jun 2013 12:21:21 -0700 Subject: Update analyze_opts to work with new nova.conf sample format analyze_opts is a tool to help clean out a nova.conf file by checking for unused and default values set in your nova.conf Change-Id: I01fff134f8906bff929c55bea8c152653d3e9760 --- tools/conf/analyze_opts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/conf/analyze_opts.py b/tools/conf/analyze_opts.py index 3088d6390..84294c9d3 100755 --- a/tools/conf/analyze_opts.py +++ b/tools/conf/analyze_opts.py @@ -44,8 +44,8 @@ class PropertyCollecter(iniparser.BaseParser): def collect_properties(cls, lineiter, sample_format=False): def clean_sample(f): for line in f: - if line.startswith("# ") and line != '# nova.conf sample #\n': - line = line[2:] + if line.startswith("#") and not line.startswith("# "): + line = line[1:] yield line pc = cls() if sample_format: -- cgit