When I am running CherryPy Hello World:
import cherrypy class HelloWorld: def index(self): return \"Hello world!\" index.exposed = True che
You've probably got something else listening on that port.
On Linux do:
netstat -pnl | grep 8080
And see what process is listening on 8080
On Windows use something like TCPView to do the same.