From: Mark Huang Date: Mon, 6 Nov 2006 21:29:00 +0000 (+0000) Subject: - boot manager passes ints instead of bools X-Git-Tag: pycurl-7_13_1~377 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b8b8f37734046b457f94e030f975c8bdcfde05e9;p=plcapi.git - boot manager passes ints instead of bools --- 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')