Allow comments in configuration file

This commit is contained in:
Kees Hink
2021-02-15 18:01:11 +01:00
committed by Brian May
parent a22c453d5e
commit 0e51da519f
3 changed files with 20 additions and 0 deletions

View File

@ -152,6 +152,10 @@ class Concat(Action):
# beginning/end of the lines.
class MyArgumentParser(ArgumentParser):
def convert_arg_line_to_args(self, arg_line):
# Ignore comments
if arg_line.startswith("#"):
return []
# strip whitespace at beginning and end of line
arg_line = arg_line.strip()