Changed micro-httpd to serve on 0.0.0.0 instead of just localhost.

Change-Id: Ib1974cb2e216ceaf54e3a78dbd43f0a5661a5e4a
diff --git a/scripts/micro-httpd.py b/scripts/micro-httpd.py
index 853c244..cf0b402 100755
--- a/scripts/micro-httpd.py
+++ b/scripts/micro-httpd.py
@@ -17,5 +17,5 @@
 import SimpleHTTPServer, SocketServer, os
 PORT = int(os.environ.get('HTTP_PORT', 8080))
 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
-httpd = SocketServer.TCPServer(("", PORT), Handler)
+httpd = SocketServer.TCPServer(("0.0.0.0", PORT), Handler)
 httpd.serve_forever()