mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
astconfigparser: Handle case where line is simply a comment.
Change-Id: I2dea5815363f4d787d709228a04f33baee383ef5
This commit is contained in:
@@ -203,6 +203,9 @@ def remove_comment(line, is_comment):
|
|||||||
if match:
|
if match:
|
||||||
# the end of where the real string is is where the comment starts
|
# the end of where the real string is is where the comment starts
|
||||||
line = line[0:(match.end()-1)]
|
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
|
return line.replace("\\", "").strip(), False
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user