Modify

Opened 14 years ago

Closed 14 years ago

#7005 closed defect (fixed)

Installation breaks with SyntaxError: Non-ASCII character '\xc3' in file

Reported by: damaxl@… Owned by: Martin Scharrer
Priority: highest Component: NumberedHeadlinesPlugin
Severity: blocker Keywords:
Cc: Trac Release: 0.11

Description

There is an issue with plugin.py at Rev: 7790. When preparing the egg file with python setup.py bdist_egg an error occures:

Traceback (most recent call last):
  File "setup.py", line 7, in <module>
    from tracnumberedheadlines.plugin import __revision__ as coderev
  File "/download/trac/numberedheadlinesplugin/0.11/tracnumberedheadlines/plugin.py", line 22
SyntaxError: Non-ASCII character '\xc3' in file /download/trac/numberedheadlinesplugin/0.11/tracnumberedheadlines/plugin.py 
on line 22, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

There is a german 'Umlaut' character 'ä' in the file. Change it to an 'a' and everything works fine.

nano <WhereeverThePackegeIs>/numberedheadlinesplugin/0.11/tracnumberedheadlines/plugin.py

-__date__     = r"$Date: 2010-03-21 22:07:24 +0100 (So, 21. Mär 2010) $"[7:-2]
+__date__     = r"$Date: 2010-03-21 22:07:24 +0100 (So, 21. Mar 2010) $"[7:-2]

Attachments (0)

Change History (1)

comment:1 Changed 14 years ago by Martin Scharrer

Resolution: fixed
Status: newclosed

(In [7991])

0.11/setup.py
0.11/tracnumberedheadlines/plugin.py
Made SVN date and rev unicode strings. The date can include non-ascii characters on non-english installations. This should fix #7005.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Martin Scharrer.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.