diff options
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) |