فهرست منبع

One more 'g' that needs to be 'gr'.

Stefano Cossu 7 سال پیش
والد
کامیت
1ded3c6592
1فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 5 5
      lakesuperior/store_layouts/ldp_rs/simple_layout.py

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

@@ -74,16 +74,16 @@ class SimpleLayout(BaseRdfLayout):
             qres = self._conn.query(q, initBindings={'s' : uri})
         except ResultException:
             # RDFlib bug: https://github.com/RDFLib/rdflib/issues/775
-            g = Graph()
+            gr = Graph()
         else:
-            g = qres.graph
+            gr = qres.graph
 
         #self._logger.debug('Found resource: {}'.format(
-        #        g.serialize(format='turtle').decode('utf-8')))
-        if strict and not len(g):
+        #        gr.serialize(format='turtle').decode('utf-8')))
+        if strict and not len(gr):
             raise ResourceNotExistsError(uri)
 
-        rsrc = Resource(g, uri)
+        rsrc = Resource(gr, uri)
 
         # Check if resource is a tombstone.
         if rsrc[RDF.type : nsc['fcsystem'].Tombstone]: