From 74c347ec6aced6debb4b96e7c237c31db61b34c1 Mon Sep 17 00:00:00 2001 From: Mike Date: Tue, 6 Aug 2019 15:27:06 -0700 Subject: [PATCH] Changed a word --- mikes-backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mikes-backup b/mikes-backup index 41f44ee..ad85fb6 100755 --- a/mikes-backup +++ b/mikes-backup @@ -165,7 +165,7 @@ class MikesBackup: elif arg == "--source-mountpoint": valid_arg = True self.__source_mountpoint_demands.append(sys.argv[a + 1]) - self.log("Found demanded source mountpoint: " + sys.argv[a + 1]) + self.log("Found required source mountpoint: " + sys.argv[a + 1]) a += 1 elif arg == "--destination-dir": valid_arg = True @@ -219,7 +219,7 @@ class MikesBackup: for mountpoint_path in self.__source_mountpoint_demands: if not os.path.ismount(mountpoint_path): - raise Exception("Demanded mountpoint is not mounted: " + str(mountpoint_path)) + raise Exception("Required mountpoint is not mounted: " + str(mountpoint_path)) self.log("Verified mountpoint: " + mountpoint_path) #