summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Arndt <arndtn@gmail.com>2020-10-08 14:11:46 +0200
committerNatanael Arndt <arndtn@gmail.com>2020-10-08 14:11:46 +0200
commit647f34acf9d3508003fcf3e68baa80eb3adb3ae4 (patch)
treeca2cd8666202419635b3faa9ab117b38953c637b
parente82888c92c80a9985f8c31d1afebe79914cb55f9 (diff)
downloadrdflib-647f34acf9d3508003fcf3e68baa80eb3adb3ae4.tar.gz
Fix typo in exception message
-rw-r--r--rdflib/plugins/stores/sparqlconnector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/plugins/stores/sparqlconnector.py b/rdflib/plugins/stores/sparqlconnector.py
index 1e49833e..af3dce39 100644
--- a/rdflib/plugins/stores/sparqlconnector.py
+++ b/rdflib/plugins/stores/sparqlconnector.py
@@ -65,7 +65,7 @@ class SPARQLConnector(object):
@method.setter
def method(self, method):
if method not in ("GET", "POST", "POST_FORM"):
- raise SPARQLConnectorException('Method must be "GET", "POST", "POST_FORM"')
+ raise SPARQLConnectorException('Method must be "GET", "POST", or "POST_FORM"')
self._method = method