Hi Ian,

In your article "Another Do-It-Yourself Framework"  [1], there is the
following example:


if __name__ == '__main__':
    from wsgiref import simple_server
    server = make_server('127.0.0.1', 8080, app)
    server.serve_forever()



Shouldn't the third line be:


    server = simple_server.make_server('127.0.0.1', 8080, app)


?

Cheers,

Roger



[1] - http://pythonpaste.org/webob/do-it-yourself.html

_______________________________________________
Paste-users mailing list
[email protected]
http://webwareforpython.org/cgi-bin/mailman/listinfo/paste-users

Reply via email to