Mercurial > code > home > repos > homeauto
comparison service/arduinoNode/rdflib_patch.py @ 169:d228105749ac
new /output to post statements which devices can handle. led and lcd output working
Ignore-this: afa16b081869a52380b04271a35c53c7
author | drewp@bigasterisk.com |
---|---|
date | Sun, 12 Apr 2015 03:44:14 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
168:b2f909325bb2 | 169:d228105749ac |
---|---|
1 | |
2 def fixQnameOfUriWithTrailingSlash(): | |
3 import rdflib.namespace | |
4 old_split = rdflib.namespace.split_uri | |
5 def new_split(uri): | |
6 try: | |
7 return old_split(uri) | |
8 except Exception: | |
9 return uri, '' | |
10 rdflib.namespace.split_uri = new_split |