Roundup Tracker - Issues

Message2418

Author anonymous
Recipients
Date 2007-04-02.10:48:10
Message-id
In-reply-to
i'm tring to use roundup on Windows server with sqlite (packaged with python25) as backend. All of texts in issue descriptions are in russian.
when running "roundup-admin -i . list issue" from cmd console on Win2003 i've got totally unreadable text. I've got "dump" of unicode (utf8?) string with two characters (printed in ascii "dos" (with pseudographics) encoding) per real russian character. 
I've tried prepend roundup-admin with "chcp 1251" (ansi or "windows" encoding) with exactly the same result. However, cmd console on nt-systems has some support for unicode printing, and, for example 
print "Русский"
print "Русский".decode('cp866')
print "one %s two" % "Русский".decode('cp866')
works good in interactive python interpreter ("Русский"="Russian")
but
print "Русский %s" % "Русский".decode('cp866')
raises
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xab in position 3: ordinal not in range(128)
History
Date User Action Args
2009-02-03 14:22:03adminlinkissue1692792 messages
2009-02-03 14:22:03admincreate