no change, just nicer php
[plcapi.git] / PLC / Methods / DeleteNodeGroup.py
index 680e718..ef646f9 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -30,7 +28,7 @@ class DeleteNodeGroup(Method):
         # Get account information
         nodegroups = NodeGroups(self.api, [node_group_id_or_name])
         if not nodegroups:
-            raise PLCInvalidArgument, "No such node group"
+            raise PLCInvalidArgument("No such node group")
 
         nodegroup = nodegroups[0]