From a6aeaee3e30b2b5d32acbcfab95dd1ce4e941ca4 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Wed, 13 Oct 2021 13:27:13 +0200 Subject: [PATCH] fix callMethod --- koji/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koji/__init__.py b/koji/__init__.py index f5a75907..bb014bcb 100644 --- a/koji/__init__.py +++ b/koji/__init__.py @@ -2589,7 +2589,7 @@ class ClientSession(object): kwargs = {'proxyuser': proxyuser} if proxyauthtype is not None: kwargs['proxyauthtype'] = proxyauthtype - sinfo = self.callMethod('sslLogin', [], kwargs) + sinfo = self._callMethod('sslLogin', [], kwargs) except Exception as ex: e_str = ''.join(traceback.format_exception_only(type(ex), ex))