Fix slight issues
diff --git a/xos/observers/vpn/steps/sync_vpntenant.py b/xos/observers/vpn/steps/sync_vpntenant.py
index 4632c8c..0ce7ab0 100644
--- a/xos/observers/vpn/steps/sync_vpntenant.py
+++ b/xos/observers/vpn/steps/sync_vpntenant.py
@@ -1,7 +1,7 @@
import os
import sys
from django.db.models import Q, F
-from helloworldservice_complete.models import VPNService, VPNTenant
+from vpn.models import VPNTenant
from observers.base.SyncInstanceUsingAnsible import SyncInstanceUsingAnsible
parentdir = os.path.join(os.path.dirname(__file__), "..")
diff --git a/xos/vpn/models.py b/xos/vpn/models.py
index fd86a37..53ee491 100644
--- a/xos/vpn/models.py
+++ b/xos/vpn/models.py
@@ -12,7 +12,7 @@
app_label = "vpn"
verbose_name = "VPN Service"
-class VPNTenantComplete(TenantWithContainer):
+class VPNTenant(TenantWithContainer):
class Meta:
proxy = True
diff --git a/xos/xos/settings.py b/xos/xos/settings.py
index 709a2b6..61a542d 100644
--- a/xos/xos/settings.py
+++ b/xos/xos/settings.py
@@ -30,7 +30,7 @@
GEOIP_PATH = "/usr/share/GeoIP"
XOS_DIR = "/opt/xos"
-DEBUG = False
+DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (