Fix bug in error handling of Inspect impl when subject is quoted triple
This commit is contained in:
parent
8b609233fa
commit
0aa0128434
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ defimpl Inspect, for: RDF.Description do
|
|||
caught_exception ->
|
||||
message =
|
||||
"got #{inspect(caught_exception.__struct__)} with message " <>
|
||||
"#{inspect(Exception.message(caught_exception))} while inspecting RDF.Description #{description.subject}"
|
||||
"#{inspect(Exception.message(caught_exception))} while inspecting RDF.Description #{inspect(description.subject)}"
|
||||
|
||||
exception = Inspect.Error.exception(message: message)
|
||||
|
||||
|
|
Loading…
Reference in a new issue