enable reading place from file
This commit is contained in:
@@ -174,6 +174,10 @@ if __name__ == "__main__":
|
|||||||
with open(config["protokoll"]["name"]) as f:
|
with open(config["protokoll"]["name"]) as f:
|
||||||
config["protokoll"]["name"] = f.read().strip()
|
config["protokoll"]["name"] = f.read().strip()
|
||||||
|
|
||||||
|
if config["place"].startswith("./"):
|
||||||
|
with open(config["place"]) as f:
|
||||||
|
config["place"] = f.read().strip()
|
||||||
|
|
||||||
if args.invite:
|
if args.invite:
|
||||||
template_file = config["invite_template_file"]
|
template_file = config["invite_template_file"]
|
||||||
elif args.presentation:
|
elif args.presentation:
|
||||||
|
|||||||
Reference in New Issue
Block a user