summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Arndt <arndtn@gmail.com>2020-05-02 00:04:07 +0200
committerNatanael Arndt <arndtn@gmail.com>2020-05-02 00:04:07 +0200
commit48a250e0341c85e27b9cb38b1c37fafdf4c02119 (patch)
treec0aaa799ab046654e34afb1ab97179a3535c79d2
parenta39c1a70cf293b4de9ca45af7b02171512899835 (diff)
downloadrdflib-48a250e0341c85e27b9cb38b1c37fafdf4c02119.tar.gz
Set update endpoint similar to query endpoint for sparqlstore if only one is given
-rw-r--r--rdflib/plugins/stores/sparqlstore.py8
1 files 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: