add protocol parsing
This commit is contained in:
@@ -138,6 +138,14 @@ if __name__ == "__main__":
|
||||
|
||||
config = yaml.full_load(open(args.config))
|
||||
|
||||
if config["redeleitung"]["name"].startswith("./"):
|
||||
with open(config["redeleitung"]["name"]) as f:
|
||||
config["redeleitung"]["name"] = f.read().strip()
|
||||
|
||||
if config["protokoll"]["name"].startswith("./"):
|
||||
with open(config["protokoll"]["name"]) as f:
|
||||
config["protokoll"]["name"] = f.read().strip()
|
||||
|
||||
if args.invite:
|
||||
template_file = config["invite_template_file"]
|
||||
elif args.presentation:
|
||||
|
||||
Reference in New Issue
Block a user