# HG changeset patch # User Sylvain Thénault # Date 1271683884 -7200 # Node ID 19bc44f5f9d18c5c87ad98871cda1c3ba35e9eec # Parent a8cd0570e3d61b603b8d0c7ace5365a65a6ca77b [web] no more needed with the bytes option type diff -r a8cd0570e3d6 -r 19bc44f5f9d1 etwist/server.py --- a/etwist/server.py Mon Apr 19 15:30:48 2010 +0200 +++ b/etwist/server.py Mon Apr 19 15:31:24 2010 +0200 @@ -119,7 +119,7 @@ self.static_directories = set(('data%s' % config.instance_md5_version(), 'data', 'static', 'fckeditor')) global MAX_POST_LENGTH - MAX_POST_LENGTH = config['max-post-length'] * 1024 * 1024 + MAX_POST_LENGTH = config['max-post-length'] def init_publisher(self): config = self.config