bug fixes
[plstackapi.git] / planetstack / observer / openstacksyncstep.py
index 3ce3c68..515ff09 100644 (file)
@@ -3,15 +3,12 @@ import base64
 from syncstep import SyncStep
 
 class OpenStackSyncStep:
-       """ PlanetStack Sync step for copying data to OpenStack 
-       """ 
-       
-       def __init__(self, **args):
-               super(SyncStep,self).__init__(**args)
-               return
-
-       
-
-
-       def __call__(self):
-               return self.call()
+    """ PlanetStack Sync step for copying data to OpenStack 
+    """ 
+    
+    def __init__(self, **args):
+        SyncStep.__init__(self, **args)
+        return
+
+    def __call__(self):
+        return self.call()