diff --git a/PyFileMaker/FMServer.py b/PyFileMaker/FMServer.py index c702720..006fe2e 100644 --- a/PyFileMaker/FMServer.py +++ b/PyFileMaker/FMServer.py @@ -678,7 +678,10 @@ def _doRequest(self, request=None, is_file=False, file_xml_uri=''): resp = requests.get( url = url, - auth = (self._login, self._password) + auth = ( + self._login, + urllib.unquote(self._password) if self._password else self._password + ) ) resp.raise_for_status()