| commit | ccd0cc09d23c2f2ddf78ec2219e3c44436c1deeb | [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 | 5e76f8084ad867a9738c82ce4d7e798c5462c32f [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)