Skip to content

Commit

Permalink
fixed sleepycat namespaces not being URIRef. fixes #201.
Browse files Browse the repository at this point in the history
  • Loading branch information
gromgull committed Apr 16, 2012
1 parent d50d987 commit cfdc4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdflib/plugins/sleepycat.py
Expand Up @@ -394,7 +394,7 @@ def namespace(self, prefix):
prefix = prefix.encode("utf-8")
ns = self.__namespace.get(prefix, None)
if ns is not None:
return ns.decode('utf-8')
return URIRef(ns.decode('utf-8'))
return None

def prefix(self, namespace):
Expand Down

0 comments on commit cfdc4b0

Please sign in to comment.