From 7f9369c1b63513ea3c8c4971a287ed4f9c369612 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Fri, 29 Jul 2016 06:48:32 -0300 Subject: 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(+) (limited to 'contrib') diff --git a/contrib/scripts/sip_to_pjsip/astconfigparser.py b/contrib/scripts/sip_to_pjsip/astconfigparser.py index 46f4fb484..a6d88c7b7 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 -- cgit v1.2.3