瀏覽代碼

Fix `is_stored` method.

Stefano Cossu 7 年之前
父節點
當前提交
29bb0ba1be
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lakesuperior/store_layouts/ldp_rs/simple_layout.py

+ 2 - 2
lakesuperior/store_layouts/ldp_rs/simple_layout.py

@@ -102,8 +102,8 @@ class SimpleLayout(BaseRdfLayout):
         '''
         self._logger.info('Checking if resource exists: {}'.format(urn))
 
-        return self._conn.query('ASK { ?s ?p ?o . }', initBindings={
-            's' : urn})
+        return bool(self._conn.query('ASK { ?s ?p ?o . }', initBindings={
+            's' : urn}))
 
 
     def modify_dataset(self, remove_trp=Graph(), add_trp=Graph(),