Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#8719 - gdeskcal refuses to start
Attached to Project:
Arch Linux
Opened by jason fuchs (jason_f) - Tuesday, 20 November 2007, 18:04 GMT
Last edited by Eric Belanger (Snowman) - Tuesday, 24 February 2009, 23:39 GMT
Opened by jason fuchs (jason_f) - Tuesday, 20 November 2007, 18:04 GMT
Last edited by Eric Belanger (Snowman) - Tuesday, 24 February 2009, 23:39 GMT
|
DetailsDescription:Gdeskcal will not start.
Additional info: * package version(s) 1.01-1 * config and/or log files etc. n/a Steps to reproduce:pacman -S gdeskcal && gdeskcal results in: (gdeskcal:9620): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. Traceback (most recent call last): File "/usr/bin/gdeskcal", line 15, in <module> import code.i18n File "/usr/lib/gdeskcal/code/i18n.py", line 1, in <module> import values File "/usr/lib/gdeskcal/code/values.py", line 13 SyntaxError: Non-ASCII character '\xc3' in file /usr/lib/gdeskcal/code/values.py on line 14, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details I'm not a programmer, but it it seems they've added the name of a maintainer and used a unicode char in their name, without including python unicode library. For me, I edited /usr/lib/gdeskcal/code/values.py and deleted all the maintainers names. This fixed it for me, but there is probably a better way... |
This task depends upon
Closed by Eric Belanger (Snowman)
Tuesday, 24 February 2009, 23:39 GMT
Reason for closing: Fixed
Additional comments about closing: fixed in gdeskcal-1.01-2
Tuesday, 24 February 2009, 23:39 GMT
Reason for closing: Fixed
Additional comments about closing: fixed in gdeskcal-1.01-2
> #! /usr/bin/python
> # coding: utf-8
Answer found here: http://bbs.archlinux.org/viewtopic.php?id=33628
But still having issue with the language...open another bug for that?
$ -> gdeskcal
Traceback (most recent call last):
File "/usr/bin/gdeskcal", line 15, in <module>
import code.i18n
File "/usr/lib/gdeskcal/code/i18n.py", line 1, in <module>
import values
File "/usr/lib/gdeskcal/code/values.py", line 13
SyntaxError: Non-ASCII character '\xc3' in file /usr/lib/gdeskcal/code/values.py on line 14, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
#! /usr/bin/python
# coding: utf-8
added on top in values.py file.