commit | cd1652e7f2755da9ee30a5c5b374143ced89cf17 | [log] [tgz] |
---|---|---|
author | Scott Baker <smbaker@gmail.com> | Fri Jun 26 09:09:06 2015 -0700 |
committer | Scott Baker <smbaker@gmail.com> | Fri Jun 26 09:09:06 2015 -0700 |
tree | 8efef3ece61452fcc412659626124dc9926c857d | |
parent | 868dabf6fa5aeccb1b99098aad5b5d69fa846a3c [diff] |
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)