From da41d13131ac2847557f296365abd196c7fddead Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 29 Mar 2015 16:38:11 +0100 Subject: [PATCH] changed algorithm --- Algorithms/check drive is recorded.pseudo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms/check drive is recorded.pseudo b/Algorithms/check drive is recorded.pseudo index 93dc360..e68e3a1 100644 --- a/Algorithms/check drive is recorded.pseudo +++ b/Algorithms/check drive is recorded.pseudo @@ -1,4 +1,4 @@ (DriveFormat, DriveName, DriveCapacity) -result <-- ExecuteSQL("SELECT BackupName FROM backups WHERE driveFormat = {} AND DriveName = {} AND DriveCapacity = {};") +result <-- ExecuteSQL("SELECT BackupName FROM backups WHERE driveFormat = {} AND DriveName = {} AND DriveCapacity = {};", DriveFormat, DriveName, DriveCapacity) if results is None then return False Else Return True \ No newline at end of file