summaryrefslogtreecommitdiff
path: root/rdflib/tools
diff options
context:
space:
mode:
authorGunnar Aastrand Grimnes <gromgull@gmail.com>2017-03-21 15:22:24 +0100
committerGunnar Aastrand Grimnes <gromgull@gmail.com>2017-04-11 10:51:54 +0200
commit8788cc603b1ffee58bf4f0c08b783d32e37ca472 (patch)
tree0ee57649afc217548756fba1aa7378d646a2ecae /rdflib/tools
parentee2c08b84b2e4c6e710a6274a8bf60d31f2e9d99 (diff)
downloadrdflib-8788cc603b1ffee58bf4f0c08b783d32e37ca472.tar.gz
fixed tiny bug with literal columns in csv2rdf
Diffstat (limited to 'rdflib/tools')
-rw-r--r--rdflib/tools/csv2rdf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/tools/csv2rdf.py b/rdflib/tools/csv2rdf.py
index 0954fb02..4e02f9ca 100644
--- a/rdflib/tools/csv2rdf.py
+++ b/rdflib/tools/csv2rdf.py
@@ -246,7 +246,7 @@ def _config_uri(prefix=None, class_=None):
def _config_literal():
- return NodeLiteral
+ return NodeLiteral()
def _config_float(f=None):