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