commit message from python script
This commit is contained in:
@@ -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, "..." )
|
||||
|
||||
Reference in New Issue
Block a user