Merge pull request #114 from radiorabe/fix/recorder-path-config

Get base_recorder_file config from proper subsection in conf
This commit is contained in:
Robb 2017-03-23 08:56:02 -04:00 committed by GitHub
commit 1f039663fb

View file

@ -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"]