git: 7e7e27793c80 - main - www/py-restclient: Fix 219183ada617bcafecf02842e919120a4b07fa54

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Sat, 16 Apr 2022 04:25:30 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=7e7e27793c807c96ef69eba7d8960d5a2ad96f59

commit 7e7e27793c807c96ef69eba7d8960d5a2ad96f59
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-04-16 04:15:42 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-04-16 04:19:54 +0000

    www/py-restclient: Fix 219183ada617bcafecf02842e919120a4b07fa54
    
    With hat:       python
---
 www/py-restclient/files/patch-2to3 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/www/py-restclient/files/patch-2to3 b/www/py-restclient/files/patch-2to3
index 87ce7330c123..f338282ed5ca 100644
--- a/www/py-restclient/files/patch-2to3
+++ b/www/py-restclient/files/patch-2to3
@@ -38,7 +38,7 @@
 +    return rest_invoke(url=url, method="GET", params=params,
                         files=files, accept=accept, headers=headers,
 -                       async=async, resp=resp, credentials=credentials,
-+                       asynchronous=async, resp=resp, credentials=credentials,
++                       asynchronous=asynchronous, resp=resp, credentials=credentials,
                         httplib_params=httplib_params)
  
  
@@ -62,7 +62,7 @@
 +    return rest_invoke(url=url, method="POST", params=params,
                         files=files, accept=accept, headers=headers,
 -                       async=async, resp=resp, credentials=credentials,
-+                       asynchronous=async, resp=resp, credentials=credentials,
++                       asynchronous=asynchronous, resp=resp, credentials=credentials,
                         httplib_params=httplib_params)
  
  
@@ -87,7 +87,7 @@
 +    return rest_invoke(url=url, method="PUT", params=params,
                         files=files, accept=accept, headers=headers,
 -                       async=async, resp=resp, credentials=credentials,
-+                       asynchronous=async, resp=resp, credentials=credentials,
++                       asynchronous=asynchronous, resp=resp, credentials=credentials,
                         httplib_params=httplib_params)
  
  
@@ -112,7 +112,7 @@
 +    return rest_invoke(url=url, method="DELETE", params=params,
                         files=files, accept=accept, headers=headers,
 -                       async=async, resp=resp, credentials=credentials,
-+                       asynchronous=async, resp=resp, credentials=credentials,
++                       asynchronous=asynchronous, resp=resp, credentials=credentials,
                         httplib_params=httplib_params)