Updated daysTopull value

This commit is contained in:
Jonathan Branan 2024-08-14 15:05:27 -05:00
parent de3a3fd03d
commit 267616f0e4

View File

@ -7,5 +7,5 @@ class sqlQuerymodel:
FROM tbl_Transactions t
Full JOIN tbl_ProtocolCommands p ON(t.TransactionID=p.TransactionID)
Full join tbl_Authentications a ON(t.TransactionID=a.TransactionID)
WHERE p.Time_stamp>@stopTime AND p.Command IS NOT NULL""".replace("30", daysTopull)
WHERE p.Time_stamp>@stopTime AND p.Command IS NOT NULL""".replace("30", str(daysTopull))
return configQuery if overRideflag else q