From b8b8f37734046b457f94e030f975c8bdcfde05e9 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Mon, 6 Nov 2006 21:29:00 +0000 Subject: [PATCH] - boot manager passes ints instead of bools --- PLC/Methods/BootNotifyOwners.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PLC/Methods/BootNotifyOwners.py b/PLC/Methods/BootNotifyOwners.py index 777a590f..79c86b6e 100644 --- a/PLC/Methods/BootNotifyOwners.py +++ b/PLC/Methods/BootNotifyOwners.py @@ -19,9 +19,9 @@ class BootNotifyOwners(Method): accepts = [ BootAuth(), Message.fields['message_id'], - Parameter(bool, "Notify PIs"), - Parameter(bool, "Notify technical contacts"), - Parameter(bool, "Notify support") + Parameter(int, "Notify PIs"), + Parameter(int, "Notify technical contacts"), + Parameter(int, "Notify support") ] returns = Parameter(int, '1 if successful') -- 2.47.0