fix wrong class name in Super()
diff --git a/xos/core/xoslib/objects/cordsubscriber.py b/xos/core/xoslib/objects/cordsubscriber.py
index 1a376ad..bc5c747 100644
--- a/xos/core/xoslib/objects/cordsubscriber.py
+++ b/xos/core/xoslib/objects/cordsubscriber.py
@@ -23,7 +23,7 @@
         proxy = True
 
     def __init__(self, *args, **kwargs):
-        super(VOLTTenant, self).__init__(*args, **kwargs)
+        super(CordSubscriber, self).__init__(*args, **kwargs)
 
     def __unicode__(self):
         return u"cordSubscriber-%s" % str(self.id)