Stats CLI fix
diff --git a/cli/sdncon/rest/views.py b/cli/sdncon/rest/views.py
index 7a45dbb..e30b429 100755
--- a/cli/sdncon/rest/views.py
+++ b/cli/sdncon/rest/views.py
@@ -406,7 +406,8 @@
     """
     if request.method != 'GET':
         raise RestInvalidMethodException()
-    url = controller_url('core', 'switch', dpid, stattype, 'json')
+    #url = controller_url('core', 'switch', dpid, stattype, 'json')
+    url = "http://localhost:8080/wm/floodlight/core/switch/%s/%s/json" % (dpid, stattype)
     return get_sdnplatform_response(url)
 
 @safe_rest_view