diff options
author | David Robillard <d@drobilla.net> | 2014-08-09 03:29:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-09 03:29:57 +0000 |
commit | ed2d6f395dd6363f1955512b3f20cf3f39954783 (patch) | |
tree | ed729dd4ba63796093fb40173b184f1d9f1e7715 /scripts | |
parent | f018fd845d5650a3a43e266e804441497c311e0a (diff) | |
download | ingen-ed2d6f395dd6363f1955512b3f20cf3f39954783.tar.gz ingen-ed2d6f395dd6363f1955512b3f20cf3f39954783.tar.bz2 ingen-ed2d6f395dd6363f1955512b3f20cf3f39954783.zip |
Update ingen.py (and thus ingenams) for latest python rdflib.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5444 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ingen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ingen.py b/scripts/ingen.py index f34bf990..e0a71a47 100644 --- a/scripts/ingen.py +++ b/scripts/ingen.py @@ -87,7 +87,7 @@ class Remote(Interface): self.msg_id = 1 self.server_base = uri + '/' self.model = rdflib.Graph() - self.ns_manager = rdflib.syntax.NamespaceManager.NamespaceManager(self.model) + self.ns_manager = rdflib.namespace.NamespaceManager(self.model) self.ns_manager.bind('server', self.server_base) for (k, v) in NS.__dict__.items(): self.ns_manager.bind(k, v) |