commit message from python script

This commit is contained in:
2024-02-20 19:53:22 +01:00
parent 32f07554c0
commit 287c8cf127

View File

@@ -19,7 +19,7 @@ def rclone_folders_copy(folder_to_sync=list, dest_folder = str):
command = subprocess.run(list_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
if command.returncode == 0:
check_list.append(True)
elif command > 0:
elif command.returncode > 0:
check_list.append(False)
print("Folder", "rclone:" + sync_folder , "not exist")
print("Kopiere Datein", dest_folder + os.sep + sync_folder, "..." )