changeset 63:21d9b6773242

Fix _rawstr.to_str() in dexfile.py
author Thinker K.F. Li <thinker@codemud.net>
date Tue, 28 Jun 2011 13:03:23 +0800
parents 8a1844afb76a
children d644c13b8cb2
files paraspace/dexfile.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/paraspace/dexfile.py	Tue Jun 28 12:54:22 2011 +0800
+++ b/paraspace/dexfile.py	Tue Jun 28 13:03:23 2011 +0800
@@ -154,7 +154,7 @@
         return v.data_size
 
     def to_str(self, v):
-        return v
+        return v.data
     pass
 
 class rawstr(_rawstr):