From 48a250e0341c85e27b9cb38b1c37fafdf4c02119 Mon Sep 17 00:00:00 2001 From: Natanael Arndt Date: Sat, 2 May 2020 00:04:07 +0200 Subject: Set update endpoint similar to query endpoint for sparqlstore if only one is given --- rdflib/plugins/stores/sparqlstore.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/rdflib/plugins/stores/sparqlstore.py b/rdflib/plugins/stores/sparqlstore.py index 5f7446ce..4c93e213 100644 --- a/rdflib/plugins/stores/sparqlstore.py +++ b/rdflib/plugins/stores/sparqlstore.py @@ -493,8 +493,8 @@ class SPARQLUpdateStore(SPARQLStore): def open(self, configuration, create=False): """ sets the endpoint URLs for this SPARQLStore - :param configuration: either a tuple of (queryEndpoint, update_endpoint), - or a string with the query endpoint + :param configuration: either a tuple of (query_endpoint, update_endpoint), + or a string with the endpoint which is configured as query and update endpoint :param create: if True an exception is thrown. """ @@ -507,9 +507,7 @@ class SPARQLUpdateStore(SPARQLStore): self.update_endpoint = configuration[1] else: self.query_endpoint = configuration - - if not self.update_endpoint: - self.update_endpoint = self.endpoint + self.update_endpoint = configuration def _transaction(self): if self._edits is None: -- cgit v1.2.1