I was going to respond to recommend that we add a comment explaining why we use str() instead of ustr() but I see it was right there all along:
On 1/11/11 5:23 AM, Uwe Grauer wrote: > # kinterbasdb will barf with unicode strings: > - host = ustr(connectInfo.Host) > - user = ustr(connectInfo.User) > - password = ustr(connectInfo.revealPW()) > - database = ustr(connectInfo.Database) > + host = str(connectInfo.Host) > + user = str(connectInfo.User) > + password = str(connectInfo.revealPW()) > + database = str(connectInfo.Database) :) Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
