We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78056df commit 759b58cCopy full SHA for 759b58c
1 file changed
lib/interface/concat_pollyxt_lvl0.py
@@ -717,7 +717,10 @@ def concat_files():
717
718
if len(sel_polly_files_list) == 1:
719
print("\nOnly one file found. Nothing to merge!\n")
720
- os.rename(sel_polly_files_list[0],Path(output_path,filestring))
+ if device == "martha":
721
+ shutil.copy2(sel_polly_files_list[0],Path(output_path,filestring))
722
+ else:
723
+ os.rename(sel_polly_files_list[0],Path(output_path,filestring))
724
return True
725
else:
726
# sel_polly_files_list = [ str(el) for el in sel_polly_files_list]
0 commit comments