Skip to content

Commit 7e8920c

Browse files
committed
Make 'method' parameter of ReconnectLDAPObject._store_last_bind private
Fixes: #448
1 parent febaf56 commit 7e8920c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/ldap/ldapobject.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -895,8 +895,8 @@ def __setstate__(self,d):
895895
self._trace_file = ldap._trace_file
896896
self.reconnect(self._uri)
897897

898-
def _store_last_bind(self,method,*args,**kwargs):
899-
self._last_bind = (method,args,kwargs)
898+
def _store_last_bind(self,_method,*args,**kwargs):
899+
self._last_bind = (_method,args,kwargs)
900900

901901
def _apply_last_bind(self):
902902
if self._last_bind!=None:

0 commit comments

Comments
 (0)