Skip to content

Commit

Permalink
Merge pull request #1607 from gjhiggins/fix-issue1216-join-error
Browse files Browse the repository at this point in the history
Revert error-raising change, enable Exception to be raised.
  • Loading branch information
nicholascar authored Dec 28, 2021
2 parents b1f2ac1 + ab10680 commit df07172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdflib/plugins/parsers/notation3.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def join(here, there):
return here + frag

# join('mid:foo@example', '../foo') bzzt
if here[bcolonl + 1] != "/":
if here[bcolonl + 1 : bcolonl + 2] != "/":
raise ValueError(
"Base <%s> has no slash after "
"colon - with relative '%s'." % (here, there)
Expand Down

0 comments on commit df07172

Please sign in to comment.