summaryrefslogtreecommitdiff
path: root/rdflib/tools
diff options
context:
space:
mode:
authorGunnar Aastrand Grimnes <gromgull@gmail.com>2013-07-29 10:20:03 +0200
committerGunnar Aastrand Grimnes <gromgull@gmail.com>2013-07-29 10:20:03 +0200
commit504ccf482243257f602cd53a144cc4d72c2f730b (patch)
tree5240d0be002c7257cf5ec03b16da7247a00bb07b /rdflib/tools
parent06b13e6876921e41648805c9b180e96e89b138d0 (diff)
downloadrdflib-504ccf482243257f602cd53a144cc4d72c2f730b.tar.gz
minor rdf2dot whitespace fix
Diffstat (limited to 'rdflib/tools')
-rw-r--r--rdflib/tools/rdf2dot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/tools/rdf2dot.py b/rdflib/tools/rdf2dot.py
index 55045f75..9a8fd49f 100644
--- a/rdflib/tools/rdf2dot.py
+++ b/rdflib/tools/rdf2dot.py
@@ -94,7 +94,7 @@ def rdf2dot(g, stream, opts={}):
continue
if isinstance(o, (rdflib.URIRef, rdflib.BNode)):
on = node(o)
- opstr = u"\t%s -> %s [ color=%s, label=< <font point-size='10'" + \
+ opstr = u"\t%s -> %s [ color=%s, label=< <font point-size='10' " + \
u"color='#336633'>%s</font> > ] ;\n"
stream.write(opstr % (sn, on, color(p), qname(p, g)))
else: