]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
astconfigparser: Really handle case where line is simply a comment. 06/3406/1
authorJoshua Colp <jcolp@digium.com>
Wed, 3 Aug 2016 14:47:04 +0000 (14:47 +0000)
committerJoshua Colp <jcolp@digium.com>
Wed, 3 Aug 2016 14:47:04 +0000 (14:47 +0000)
The regular expression would match causing the code that handled
the line if it was merely a comment to never get executed.

Change-Id: I3e4022481037ebcba9905587fe8c764b4ce21819

contrib/scripts/sip_to_pjsip/astconfigparser.py

index a6d88c7b75341aa52e635037b9c8c116e89ad52b..dc79e803218ebb2622ca23609eb6109ad2cb5283 100644 (file)
@@ -203,7 +203,7 @@ 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 line.startswith(";"):
          # if the line is actually a comment just ignore it all
          line = ""