Fixing CI/CD pipeline
Some checks failed
/ build (macos-latest, 3.8) (push) Has been cancelled
/ build (ubuntu-latest, pypy-2.7) (push) Has been cancelled
/ build (windows-latest, 3.14) (push) Has been cancelled

This commit is contained in:
Miroslav Štampar 2026-06-28 19:03:21 +02:00
parent 2297c81309
commit 4c869817d4
10 changed files with 41 additions and 22 deletions

View file

@ -208,7 +208,8 @@ def _drive_hpp(payload, name="id"):
kb.postSpaceToPlus = False
value = "%s=%s%s%s" % (name, PAYLOAD_DELIMITER, payload, PAYLOAD_DELIMITER)
try:
Connect.queryPage(value=value, place=PLACE.GET, disableTampering=True)
_qp = getattr(Connect.queryPage, "__func__", Connect.queryPage)
_qp(value=value, place=PLACE.GET, disableTampering=True)
except _Sentinel:
pass
finally: