diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-08-27 03:55:33 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-08-27 03:55:33 +0000 |
commit | 2a4b07c8d0105ea7418ea3afc9e777a7a396fc46 (patch) | |
tree | 874777611145c6c70f17a970fb81722b8dd0e886 | |
parent | 31d90880b6b7380c20e802e9dca243e0619981cf (diff) | |
download | portage-2a4b07c8d0105ea7418ea3afc9e777a7a396fc46.tar.gz portage-2a4b07c8d0105ea7418ea3afc9e777a7a396fc46.tar.bz2 portage-2a4b07c8d0105ea7418ea3afc9e777a7a396fc46.zip |
Use plain ascii encoding for this file, in order to avoid error messages like
this which building stages (happens when python is built with USE=build):
* Byte compiling python modules for python-2.6 .. ...
Compiling //usr/lib64/portage/pym/portage/cache/ebuild_xattr.py ...
SyntaxError: ('unknown encoding: UTF8', ('//usr/lib64/portage/pym/portage/cache/
ebuild_xattr.py', 0, 0, None))
svn path=/main/trunk/; revision=14162
-rw-r--r-- | pym/portage/cache/ebuild_xattr.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/portage/cache/ebuild_xattr.py b/pym/portage/cache/ebuild_xattr.py index 4406b4e77..fa3937e2f 100644 --- a/pym/portage/cache/ebuild_xattr.py +++ b/pym/portage/cache/ebuild_xattr.py @@ -1,6 +1,5 @@ -# -*- coding: UTF8 -*- # Copyright: 2009 Gentoo Foundation -# Author(s): Petteri Räty (betelgeuse@gentoo.org) +# Author(s): Petteri Räty (betelgeuse@gentoo.org) # License: GPL2 # $Id$ |