@@ -100,7 +100,7 @@ def get_auth_providers(self, netloc):
100100
101101 response = requests .get (url , verify = self .verify , proxies = self .proxies )
102102 if not response .ok or not hasattr (response , "json" ):
103- error_message = '%s Unexpected Error: %s for uri: %s\n Text : %r' % \
103+ error_message = '%s Unexpected Error: %s for uri: %s Text : %r' % \
104104 (response .status_code ,
105105 response .reason ,
106106 response .url ,
@@ -155,7 +155,7 @@ def get_new_token(self, netloc):
155155 )
156156 self .attempts += 1
157157 if not response .ok or not hasattr (response , "json" ):
158- error_message = '%s Unexpected Error: %s for uri: %s\n Text : %r' % \
158+ error_message = '%s Unexpected Error: %s for uri: %s Text : %r' % \
159159 (response .status_code ,
160160 response .reason ,
161161 response .url ,
@@ -173,7 +173,7 @@ def get_new_token(self, netloc):
173173 )
174174 except (KeyError , ValueError ):
175175 error_message = \
176- '%s Unparseable Response: %s for uri: %s\n Text : %r' % \
176+ '%s Unparseable Response: %s for uri: %s Text : %r' % \
177177 (response .status_code ,
178178 response .reason ,
179179 response .url ,
@@ -187,7 +187,7 @@ def get_new_token(self, netloc):
187187 )
188188 except iControlUnexpectedHTTPError :
189189 error_message = \
190- '%s Token already expired: %s for uri: %s\n Text : %r' % \
190+ '%s Token already expired: %s for uri: %s Text : %r' % \
191191 (response .status_code ,
192192 time .ctime (expiration_bigip ),
193193 response .url ,
0 commit comments