We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9133e3 commit eaf4104Copy full SHA for eaf4104
apirdflib.py
@@ -194,6 +194,8 @@ def stripID (str):
194
return "rdfs:" + str[37:]
195
elif (l > 42 and (str[:43] == 'http://www.w3.org/1999/02/22-rdf-syntax-ns#')):
196
return "rdf:" + str[43:]
197
+ elif (l > 29 and (str[:30] == 'http://www.w3.org/2002/07/owl#')):
198
+ return "owl:" + str[30:]
199
else:
200
return str
201
0 commit comments