X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FBootStates.py;h=2bbcf0de3f8e125edb2f9e7b01eeecada6b97467;hb=19d4a01ccf66af9e00914351b3eacd5fc880f988;hp=d72b07d976dbbb1d010cfbccc0a54d927508e8c6;hpb=a8f3f895eae7f5f9870380720d1cda979d553915;p=plcapi.git diff --git a/PLC/BootStates.py b/PLC/BootStates.py index d72b07d..2bbcf0d 100644 --- a/PLC/BootStates.py +++ b/PLC/BootStates.py @@ -4,9 +4,6 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id$ -# $URL$ -# from PLC.Faults import * from PLC.Parameter import Parameter @@ -30,7 +27,7 @@ class BootState(Row): if not len(name): raise PLCInvalidArgument, "Boot state must be specified" - # Make sure boot state does not alredy exist + # Make sure boot state does not already exist conflicts = BootStates(self.api, [name]) if conflicts: raise PLCInvalidArgument, "Boot state name already in use"