make config files use .json instead of _json
diff --git a/xos/observers/onos/steps/sync_onosapp.py b/xos/observers/onos/steps/sync_onosapp.py
index 124be57..311fb93 100644
--- a/xos/observers/onos/steps/sync_onosapp.py
+++ b/xos/observers/onos/steps/sync_onosapp.py
@@ -82,7 +82,7 @@
 
         for attr in o.tenantattributes.all():
             if attr.name.startswith("config_"):
-                fn = attr.name[7:]
+                fn = attr.name[7:].replace("_json",".json")
                 o.config_fns.append(fn)
                 file(os.path.join(o.files_dir, fn),"w").write(attr.value)