Skip to content

Commit

Permalink
Merge PR #713 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Aug 11, 2024
2 parents cba0c8e + 36db32b commit 2e27f27
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _gocardless_request(
self, endpoint, request_type="get", params=None, data=None, basic_auth=False
):
content = {}
url = url_join(GOCARDLESS_API, endpoint)
url = url_join(GOCARDLESS_API, endpoint) + "/"
response = getattr(requests, request_type)(
url,
data=data,
Expand Down Expand Up @@ -143,9 +143,9 @@ def action_select_gocardless_bank(self):
"view_mode": "form",
"target": "new",
}
return self._gocardless_select_bank_instituion()
return self._gocardless_select_bank_institution()

def _gocardless_select_bank_instituion(self):
def _gocardless_select_bank_institution(self):
"""Ask for the GoCardless bank instituion and continue full linkage."""
country = (
self.journal_id.bank_account_id.company_id or self.journal_id.company_id
Expand Down

0 comments on commit 2e27f27

Please sign in to comment.