cosmetic
[nodemanager.git] / controller.py
index ab8e521..feca5e9 100644 (file)
@@ -4,12 +4,13 @@
 """Delegate accounts are used to provide secure access to the XMLRPC API.  
 They are normal Unix accounts with a shell that tunnels XMLRPC requests to the API server."""
 
-import accounts
-import logger
-import tools
 from pwd import getpwnam
 from grp import getgrnam
 
+import logger
+import tools
+import accounts
+
 class Controller(accounts.Account):
     SHELL = '/usr/bin/forward_api_calls'  # tunneling shell
     TYPE = 'controller.Controller'