diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-04-12 21:02:19 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-04-12 21:02:19 +0200 |
commit | 3092203fa9398856538a51d558cca5210d2d1a17 (patch) | |
tree | e0c8dff9c0418f25996975d3947e31e7eb6ad1e9 /portato/eix | |
parent | f60043617196af00df43d2083c7bc318f5c8ef4d (diff) | |
download | portato-3092203fa9398856538a51d558cca5210d2d1a17.tar.gz portato-3092203fa9398856538a51d558cca5210d2d1a17.tar.bz2 portato-3092203fa9398856538a51d558cca5210d2d1a17.zip |
Descriptions may contain unicode
Diffstat (limited to '')
-rw-r--r-- | portato/eix/parser.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/eix/parser.pyx b/portato/eix/parser.pyx index d4bd3af..6363b37 100644 --- a/portato/eix/parser.pyx +++ b/portato/eix/parser.pyx @@ -279,7 +279,7 @@ cdef class package: after_offset = ftell(cfile) self.name = string(file) - self.description = string(file) + self.description = unicode(string(file)) # skip the rest, as it is currently unneeded #self.provide = vector(file, number) |