From 5f04dbb8a808a807677db87af5b934cbe8700f09 Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Thu, 23 Mar 2017 13:18:52 +0100 Subject: [PATCH] Get base_recorder_file config from proper subsection in conf It took me way too long to figure this one out it wasn't logging nicely. With this ecasound actually gets called again. It's still failing on my install but I'm not yet sure why exactly. --- python_apps/pypo/pypo/recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/pypo/recorder.py b/python_apps/pypo/pypo/recorder.py index 82797a366..73cf2585b 100644 --- a/python_apps/pypo/pypo/recorder.py +++ b/python_apps/pypo/pypo/recorder.py @@ -78,7 +78,7 @@ class ShowRecorder(Thread): else: filetype = "ogg"; - joined_path = os.path.join(config["base_recorded_files"], filename) + joined_path = os.path.join(config["pypo"]["base_recorded_files"], filename) filepath = "%s.%s" % (joined_path, filetype) br = config["pypo"]["record_bitrate"]