remove extraneous comment

master
Zach White 2021-01-08 00:21:51 -08:00 committed by Zach White
parent 959f566118
commit 58fcdf8c07
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def parse_config_h_file(config_h_file, config_h=None):
if config_h_file.exists():
config_h_text = config_h_file.read_text()
config_h_text = config_h_text.replace('\\\n', '') # Why are you here?
config_h_text = config_h_text.replace('\\\n', '')
config_h_text = strip_multiline_comment(config_h_text)
for linenum, line in enumerate(config_h_text.split('\n')):