CORD-1244 cleanup use of get_tenant/get_service
Change-Id: I014dce9df70cf023a2c82b96a43467c3250ac6b8
diff --git a/xos/attic/vtrtenant_model.py b/xos/attic/vtrtenant_model.py
index 6d3dba2..f2d24c3 100644
--- a/xos/attic/vtrtenant_model.py
+++ b/xos/attic/vtrtenant_model.py
@@ -1,7 +1,7 @@
sync_attributes = ( 'test', 'argument', "scope" )
def __init__(self, *args, **kwargs):
- vtr_services = VTRService.get_service_objects().all()
+ vtr_services = VTRService.objects.all()
if vtr_services:
self._meta.get_field("provider_service").default = vtr_services[0].id
super(VTRTenant, self).__init__(*args, **kwargs)