Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Fixed tuple-to-dict with prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fserena committed Jun 3, 2016
1 parent 90e1ea8 commit d95c796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agora/fountain/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.5.5",
"version": "0.5.6",
"author": "Fernando Serena",
"email": "fernando.serena@centeropenmiddleware.com",
"github": "https://github.com/smartdeveloperhub/agora-fountain",
Expand Down
2 changes: 1 addition & 1 deletion agora/fountain/vocab/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def prefixes(vid=None):
context = graph
if vid is not None:
context = context.get_context(vid)
return list(context.namespaces())
return dict(context.namespaces())


def contexts():
Expand Down

0 comments on commit d95c796

Please sign in to comment.