From 79508792d7c3684f9dea8c69ccc44d9d4827cf11 Mon Sep 17 00:00:00 2001
From: Thierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Date: Tue, 6 Jan 2009 06:10:19 +0000
Subject: [PATCH] broken build - please review

---
 PLC/Methods/RebootNodeWithPCU.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/PLC/Methods/RebootNodeWithPCU.py b/PLC/Methods/RebootNodeWithPCU.py
index c0543201..b7ba0018 100644
--- a/PLC/Methods/RebootNodeWithPCU.py
+++ b/PLC/Methods/RebootNodeWithPCU.py
@@ -55,20 +55,20 @@ class RebootNodeWithPCU(Method):
             if node['site_id'] not in self.caller['site_ids']:
                 raise PLCPermissionDenied, "Not allowed to reboot nodes from specified site"
 
-		# Verify that the node has pcus associated with it.
-		pcus = PCUs(self.api, {'pcu_id' : node['pcu_ids']} )
+	# Verify that the node has pcus associated with it.
+	pcus = PCUs(self.api, {'pcu_id' : node['pcu_ids']} )
         if not pcus:
             raise PLCInvalidArgument, "No PCUs associated with Node"
 
-		pcu = pcus[0]
+	pcu = pcus[0]
 
-		if not external_dependency:
+	if not external_dependency:
             raise PLCNotImplemented, "Could not load external module to attempt reboot"
 
-		# model, hostname, port, 
-		# i = pcu['node_ids'].index(node['node_id'])
-		# p = pcu['ports'][i]
-		ret = reboot.reboot_api(node, pcu)
+	# model, hostname, port, 
+	# i = pcu['node_ids'].index(node['node_id'])
+	# p = pcu['ports'][i]
+	ret = reboot.reboot_api(node, pcu)
 
         self.event_objects = {'Node': [node['node_id']]}
         self.message = "RebootNodeWithPCU called"
-- 
2.47.0