From a7ae48441fe7027ff3d6a92b660cec51f9fe4030 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Fri, 29 Jul 2016 06:48:32 -0300 Subject: [PATCH] astconfigparser: Handle case where line is simply a comment. Change-Id: I2dea5815363f4d787d709228a04f33baee383ef5 --- contrib/scripts/sip_to_pjsip/astconfigparser.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/scripts/sip_to_pjsip/astconfigparser.py b/contrib/scripts/sip_to_pjsip/astconfigparser.py index 46f4fb484b..a6d88c7b75 100644 --- a/contrib/scripts/sip_to_pjsip/astconfigparser.py +++ b/contrib/scripts/sip_to_pjsip/astconfigparser.py @@ -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