Removed a variable that was unused in m4b generation

This commit is contained in:
Juraj Borza
2025-05-03 19:34:35 +02:00
parent 1ca4d0d5f9
commit 62aeaecf89
-1
View File
@@ -555,7 +555,6 @@ class ConversionThread(QThread):
# in case the user picked m4b format, we need to change the output format to wav # in case the user picked m4b format, we need to change the output format to wav
if self.output_format == "m4b": if self.output_format == "m4b":
picked_out_path = out_path
out_path = os.path.splitext(out_path)[0] + ".wav" out_path = os.path.splitext(out_path)[0] + ".wav"
self.output_format = "wav" self.output_format = "wav"
m4b_picked = True m4b_picked = True