diff options
| author | Alvin Penner <penner@vaxxine.com> | 2008-12-12 11:15:17 +0000 |
|---|---|---|
| committer | alvinpenner <alvinpenner@users.sourceforge.net> | 2008-12-12 11:15:17 +0000 |
| commit | 7fb3db5fed39168a6288e14a3ae9878c1ab3b3c8 (patch) | |
| tree | 090fc6ea9e6369e78238963291d39c84c600996d | |
| parent | bug #166885 (preserveAspectRatio="none" misinterpreted) (diff) | |
| download | inkscape-7fb3db5fed39168a6288e14a3ae9878c1ab3b3c8.tar.gz inkscape-7fb3db5fed39168a6288e14a3ae9878c1ab3b3c8.zip | |
use iso-8859-1
(bzr r6989)
| -rw-r--r-- | share/extensions/dxf_input.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/extensions/dxf_input.py b/share/extensions/dxf_input.py index 235c777b0..7e7a78da9 100644 --- a/share/extensions/dxf_input.py +++ b/share/extensions/dxf_input.py @@ -210,6 +210,7 @@ while line[0] and line[1] != 'ENDSEC': seqs.append(line[0]) # list of group codes
if line[0] == '1' or line[0] == '8': # text value
val = line[1].replace('\~', ' ')
+ val = unicode(val, "iso-8859-1")
elif line[0] == '62' or line[0] == '70': # unscaled integer value
val = int(line[1])
elif line[0] == '10': # scaled float x value
|
