From 6d9e9f345944b9ecef165a100db1d1f955596cbc Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Wed, 14 Dec 2011 18:07:06 +0100 Subject: [PATCH] CC-2268 : Make MP3 optional for show recorder to remove dependency on lame --- python_apps/show-recorder/recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/show-recorder/recorder.py b/python_apps/show-recorder/recorder.py index 4cd65c3bf..da94e212c 100644 --- a/python_apps/show-recorder/recorder.py +++ b/python_apps/show-recorder/recorder.py @@ -72,7 +72,7 @@ class ShowRecorder(Thread): if config["record_file_type"] in ["mp3", "ogg"]: filetype = config["record_file_type"] - else + else: filetype = "ogg"; filepath = "%s%s.%s" % (config["base_recorded_files"], filename, filetype)