From 55b0e7d6b5307172a15c5f2fda45292604419228 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Thu, 4 Jul 2019 15:56:42 +0200 Subject: [PATCH] Added missing printing of retrieved option value Signed-off-by: Jim Martens --- src/twomartens/masterthesis/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twomartens/masterthesis/cli.py b/src/twomartens/masterthesis/cli.py index 5d94b1f..a1de8fc 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -33,7 +33,7 @@ from twomartens.masterthesis import config as conf def config(args: argparse.Namespace) -> None: if args.action == "get": - conf.get_property(args.property) + print(conf.get_property(args.property)) elif args.action == "set": conf.set_property(args.property, args.value) elif args.action == "list":