diff -r e67c4b18a16b -r b346fd32fc34 tweetcast/server-gevent/tweetcast.py --- a/tweetcast/server-gevent/tweetcast.py Fri Dec 16 20:10:31 2011 +0100 +++ b/tweetcast/server-gevent/tweetcast.py Mon Dec 19 00:30:04 2011 +0100 @@ -135,4 +135,6 @@ return ['

Not Found

'] session = Session() -WSGIServer(('', WEB_PORT), webserver).serve_forever() \ No newline at end of file + +if __name__ == "__main__": + WSGIServer(('', WEB_PORT), webserver).serve_forever() \ No newline at end of file