Changes between Initial Version and Version 1 of Ticket #223
- Timestamp:
- 10/11/12 10:19:53 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #223
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
fixed
-
Property
Status
changed from
-
Ticket #223 – Description
initial v1 1 {{{ 1 2 OS: Linux olloff-desktop 3.5.0-15-generic #23-Ubuntu x86_64 x86_64 x86_64 GNU/Linux 2 3 Python: 2.7.3 3 4 Winswitch: __version__=0.12.17 5 }}} 4 6 Error: http://pastebin.com/uuLLTjAP 5 7 Traceback: http://pastebin.com/xKW3kKnw 6 8 7 9 After fresh install 0.12.16 or update to 0.12.17 I get next error: 8 > SyntaxError: Non-ASCII character '\xc3' in file /usr/lib/python2.7 9 > /dist-packages/winswitch/util/xkbmap_util.py 10 {{{ 11 SyntaxError: Non-ASCII character '\xc3' in file \ 12 /usr/lib/python2.7/dist-packages/winswitch/util/xkbmap_util.py 13 }}} 10 14 11 Problem seems to be fixed by adding encoding information to xkbmap_util.py 12 > # -*- coding: utf-8 -*- 15 Problem seems to be fixed by adding encoding information to {{{xkbmap_util.py}}}: 16 {{{ 17 # -*- coding: utf-8 -*- 18 }}}