Użytkownik STyler napisał:
> UnicodeDecodeError: 'ascii' codec can't decode byte 0xf3 in position 0:
> ordinal not in range(128)

Two general rules:
1) your *.py files should start with encoding declaration line, e.g.
        # -*- coding: utf-8 -*-
        # replace utf-8 with desired encoding
2) strings with national characters should be defined as
        u"ąłśćźćńżź".

I hope it helps.
-- 
Regards
Jacek Kałucki
_______________________________________________
Post Messages to: Dabo-users@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/4f551ad4.6070...@rz.onet.pl

Reply via email to