File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,9 @@ def wait_for_host_availability(
6767 True if host becomes available, False if timeout
6868 """
6969 logger .info (
70- "Waiting for %s to become available (timeout: %ss)" , host .name , max_wait_time
70+ "Waiting for %s to become available (timeout: %ss)" ,
71+ host .name ,
72+ max_wait_time ,
7173 )
7274
7375 start_time = time .time ()
Original file line number Diff line number Diff line change @@ -83,7 +83,9 @@ def authenticate(self) -> bool:
8383 self .session .headers .update ({"CSRFPreventionToken" : self .csrf_token })
8484 self .session .cookies .set ("PVEAuthCookie" , self .ticket )
8585
86- logger .info ("Successfully authenticated to Proxmox at %s" , self .endpoint )
86+ logger .info (
87+ "Successfully authenticated to Proxmox at %s" , self .endpoint
88+ )
8789 return True
8890 logger .error (
8991 "Authentication failed: %s - %s" , response .status_code , response .text
You can’t perform that action at this time.
0 commit comments