@@ -171,7 +171,7 @@ def _activate_form(self, response, form_index=0, inputs={}, cache=True,
171171 return response
172172
173173 def _login (self , username = None , store_password = False ,
174- retype_password = False ):
174+ reenter_password = False ):
175175 """
176176 Login to the ESO User Portal.
177177
@@ -182,7 +182,7 @@ def _login(self, username=None, store_password=False,
182182 specified in the config file.
183183 store_password : bool, optional
184184 Stores the password securely in your keyring. Default is False.
185- retype_password : bool, optional
185+ reenter_password : bool, optional
186186 Asks for the password even if it is already stored in the
187187 keyring. This is the way to overwrite an already stored passwork
188188 on the keyring. Default is False.
@@ -195,7 +195,7 @@ def _login(self, username=None, store_password=False,
195195 username = self .USERNAME
196196
197197 # Get password from keyring or prompt
198- if retype_password is False :
198+ if reenter_password is False :
199199 password_from_keyring = keyring .get_password (
200200 "astroquery:www.eso.org" , username )
201201 else :
@@ -318,7 +318,7 @@ def query_surveys(self, surveys='', cache=True,
318318 query_dict ["max_rows_returned" ] = self .ROW_LIMIT
319319 else :
320320 query_dict ["max_rows_returned" ] = 10000
321-
321+
322322 survey_response = self ._activate_form (survey_form , form_index = 0 ,
323323 inputs = query_dict , cache = cache )
324324
0 commit comments