Merge "astconfigparser: Handle case where line is simply a comment." into 13

changes/85/3385/1
zuul 9 years ago committed by Gerrit Code Review
commit b8fb794e53

@ -203,6 +203,9 @@ def remove_comment(line, is_comment):
if match:
# the end of where the real string is is where the comment starts
line = line[0:(match.end()-1)]
elif line.startswith(";"):
# if the line is actually a comment just ignore it all
line = ""
return line.replace("\\", "").strip(), False

Loading…
Cancel
Save