Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -405,6 +405,10 @@ class WhisperBase(ABC):
|
|
405 |
for file_name, info in files_info.items():
|
406 |
|
407 |
file_count += 1
|
|
|
|
|
|
|
|
|
408 |
|
409 |
# Add filename & info as first line
|
410 |
tabbed_space = ("\t")*3
|
|
|
405 |
for file_name, info in files_info.items():
|
406 |
|
407 |
file_count += 1
|
408 |
+
|
409 |
+
if file_count_total > 1:
|
410 |
+
if file_count > 1:
|
411 |
+
total_result += "#NEWLINE#"
|
412 |
|
413 |
# Add filename & info as first line
|
414 |
tabbed_space = ("\t")*3
|