Bug fixing and ordering openvswitch code
[nepi.git] / src / nepi / resources / linux / application.py
index 89a9cfb..90345b7 100644 (file)
@@ -355,7 +355,6 @@ class LinuxApplication(ResourceManager):
 
             # replace application specific paths in the command
             command = self.replace_paths(command)
-            
             # replace application specific paths in the environment
             env = self.get("env")
             env = env and self.replace_paths(env)
@@ -526,7 +525,7 @@ class LinuxApplication(ResourceManager):
         # Wait until node is associated and deployed
         node = self.node
         if not node or node.state < ResourceState.READY:
-            self.debug("---- RESCHEDULING DEPLOY ---- node state %s " % self.node.state )
+            self.debug("---- RESCHEDULING DEPLOY ---- node state %s " % self.node.state)
             self.ec.schedule(self.reschedule_delay, self.deploy)
         else:
             command = self.get("command") or ""