Skip to content

Commit ac092f4

Browse files
committed
rename free funcs
1 parent da490fc commit ac092f4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

irods/client_init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
import getpass
55
import sys
66

7-
def write_credentials_with_native_password( password ):
7+
def write_native_credentials_to_secrets_file( password ):
88
s = h.make_session()
99
assert(not s.auth_file)
1010
open(s.pool.account.derived_auth_file,'w').write(obf.encode(password))
1111
return True
1212

13-
def write_credentials_with_pam_password( password ):
13+
def write_pam_credentials_to_secrets_file( password ):
1414
s = h.make_session()
1515
s.pool.account.password = password
1616
with cfg.loadlines( [dict(setting='legacy_auth.pam.password_for_auto_renew',value=None),

0 commit comments

Comments
 (0)