Verbosity

This commit is contained in:
Mike 2020-01-27 16:23:36 -08:00
parent 6cf4d49bc3
commit 1821fe453d
1 changed files with 2 additions and 1 deletions

View File

@ -284,7 +284,7 @@ class MikesBackup:
return False
#
self.log("Checking for remote destination path")
self.log("Checking for remote destination path: " + destination_path)
command = [
"[ -d " + destination_path + " ]"
]
@ -764,6 +764,7 @@ class MikesBackup:
raise Exception("Unsupported command datatype")
# Spawn
# print(args)
process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# process = subprocess.Popen(args)
stdout, stderr = process.communicate()