<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 03/03/2014 06:50 AM, Sheldon wrote:<br>
    </div>
    <blockquote cite="mid:5314505B.6020803@linux.vnet.ibm.com"
      type="cite">Now there's a issue:
      <br>
      <a class="moz-txt-link-freetext" href="https://github.com/kimchi-project/kimchi/issues/333">https://github.com/kimchi-project/kimchi/issues/333</a>
      <br>
      <br>
      The reason of this issue is because high level cherrpy version
      make some change about set_response.
      <br>
      <br>
      The high level cherrpy encode the unicode error message by itself.
      <br>
      <br>
      So the kimchi do not encode the unicode error message any more.
      <br>
      <br>
      It is right, the cherrpy should encode the unicode error message.
      <br>
      <br>
      Now we can require the cherrypy version to solve this problem.
      <br>
      <br>
      we can also check the cherrypy version in kimchi code as follow in
      order to avoid to require the cherrypy version.
      <br>
      <br>
      like:
      <br>
      if cherrypy.__version__ &lt;&lt; 3.2.5:
      <br>
      return res
      <br>
      else:
      <br>
      return res.encode("utf-8")
      <br>
      <br>
    </blockquote>
    <br>
    <font face="DejaVu Sans Mono">Did you confirm all the supported
      distros have access to the high cherrypy version?<br>
      If so, I am OK to upgrade the cherrypy version<br>
    </font>
  </body>
</html>