more python3, esp. in shebangs and doc
[plcapi.git] / PLC / KeyTypes.py
index 1f7fd19..e234455 100644 (file)
@@ -4,9 +4,6 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id$
-# $URL$
-#
 
 from PLC.Faults import *
 from PLC.Parameter import Parameter
@@ -28,12 +25,12 @@ class KeyType(Row):
     def validate_key_type(self, name):
         # Make sure name is not blank
         if not len(name):
-            raise PLCInvalidArgument, "Key type must be specified"
+            raise PLCInvalidArgument("Key type must be specified")
 
         # Make sure key type does not alredy exist
         conflicts = KeyTypes(self.api, [name])
         if conflicts:
-            raise PLCInvalidArgument, "Key type name already in use"
+            raise PLCInvalidArgument("Key type name already in use")
 
         return name