| ... | ... |
@@ -487,7 +487,7 @@ class XDotParser(DotParser): |
| 487 | 487 |
if attr in attrs: |
| 488 | 488 |
parser = XDotAttrParser(self, attrs[attr]) |
| 489 | 489 |
shapes.extend(parser.parse()) |
| 490 |
- url = attrs.get('URL', None)
|
|
| 490 |
+ url = attrs.get('URL', None).decode('utf-8')
|
|
| 491 | 491 |
node = elements.Node(id, x, y, w, h, shapes, url) |
| 492 | 492 |
self.node_by_name[id] = node |
| 493 | 493 |
if shapes: |