When lodstats/util/namespace.py extracts the namespace from http://dbpedia.org/resource/Torgny_T:son_Segerstedt, the result is http://dbpedia.org/resource/Torgny_T and not http://dbpedia.org/resource/. If I change the line ``` for sep in ['#', ':', '/']: ``` to ``` for sep in ['#', '/', ':']: ``` it extracts the namespace correctly (but possibly creates a problem with other namespaces...)
When lodstats/util/namespace.py extracts the namespace from http://dbpedia.org/resource/Torgny_T:son_Segerstedt, the result is http://dbpedia.org/resource/Torgny_T and not http://dbpedia.org/resource/.
If I change the line
to
it extracts the namespace correctly (but possibly creates a problem with other namespaces...)