@@ -93,7 +93,7 @@ def update_version_windows(self, spec: Specifier) -> ConfigWinCP | None:
93
93
unsorted_versions = spec .filter (self .version_dict )
94
94
versions = sorted (unsorted_versions , reverse = True )
95
95
96
- log .debug (f "Windows { self .arch } { spec } has { ', ' .join (str (v ) for v in versions )} " )
96
+ log .debug ("Windows %s %s has %s" , self .arch , spec , ", " .join (str (v ) for v in versions ))
97
97
98
98
if not versions :
99
99
return None
@@ -254,7 +254,7 @@ def update_config(self, config: dict[str, str]) -> None:
254
254
identifier = config ["identifier" ]
255
255
version = Version (config ["version" ])
256
256
spec = Specifier (f"=={ version .major } .{ version .minor } .*" )
257
- log .info (f "Reading in ' { identifier } ' -> { spec } @ { version } " )
257
+ log .info ("Reading in %r -> %s @ %s" , str ( identifier ), spec , version )
258
258
orig_config = copy .copy (config )
259
259
config_update : AnyConfig | None = None
260
260
@@ -282,7 +282,7 @@ def update_config(self, config: dict[str, str]) -> None:
282
282
config .update (** config_update )
283
283
284
284
if config != orig_config :
285
- log .info (f " Updated { orig_config } to { config } " )
285
+ log .info (" Updated %s to %s" , orig_config , config )
286
286
287
287
288
288
@click .command ()
0 commit comments