Skip to content

Commit

Permalink
Merge pull request #1426 from jimman2003/fix_love_arg
Browse files Browse the repository at this point in the history
rename arg LOVE to ns in rdfpipe
  • Loading branch information
nicholascar authored Oct 10, 2021
2 parents d867fc2 + 1c33984 commit 4a16a5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rdflib/tools/rdfpipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ def main():
logging.basicConfig(level=loglevel)

ns_bindings = {}
if opts.LOVE:
for ns_kw in opts.LOVE:
if opts.ns:
for ns_kw in opts.ns:
pfx, uri = ns_kw.split("=")
ns_bindings[pfx] = uri

Expand Down

0 comments on commit 4a16a5f

Please sign in to comment.