We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07359cc commit 8047968Copy full SHA for 8047968
1 file changed
nextcloudclient/upload.py
@@ -61,7 +61,7 @@ def upload_to_nextcloud(source_paths: list[str], remote_name: str, remote_path:
61
print(f"Upload: {path} → {destination}")
62
try:
63
subprocess.run(command, check=True)
64
- result.append(tmp_results)
+ result.extend(tmp_results)
65
print("✅ Uploaded successfully.\n")
66
except subprocess.CalledProcessError as e:
67
print(f"❌ Error uploading {path}: {e}\n")
0 commit comments