@@ -225,7 +225,7 @@ class _Options:
225225
226226
227227# Map of old config names to new config names.
228- REPLACED_NAMES = [
228+ DEPRECATED_NAMES = [
229229 ("output_file" , "changelog" ),
230230 ("insert_marker" , "start_marker" ),
231231]
@@ -341,7 +341,7 @@ def read_one_config(self, configfile: str) -> None:
341341 scriv_data = parser [section_name ]
342342 for attrdef in attr .fields (_Options ):
343343 self .get_set_option (scriv_data , attrdef .name , attrdef .name )
344- for old , new in REPLACED_NAMES :
344+ for old , new in DEPRECATED_NAMES :
345345 self .get_set_option (scriv_data , old , new )
346346
347347 def read_one_toml (self , tomlfile : str ) -> None :
@@ -377,7 +377,7 @@ def read_one_toml(self, tomlfile: str) -> None:
377377 return
378378 for attrdef in attr .fields (_Options ):
379379 self .get_set_option (scriv_data , attrdef .name , attrdef .name )
380- for old , new in REPLACED_NAMES :
380+ for old , new in DEPRECATED_NAMES :
381381 self .get_set_option (scriv_data , old , new )
382382
383383 def resolve_value (self , value : str ) -> str :
0 commit comments