Skip to content

Commit

Permalink
Replace all occurances of RESOTO
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Mar 1, 2024
1 parent df497f2 commit 509a53d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixlib/fixlib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,5 +582,5 @@ def ensure_bw_compat() -> None:

old_env_vars = [key for key in os.environ if key.startswith("RESOTO")]
for old_env_var in old_env_vars:
new_env_var = "FIX" + old_env_var[len("RESOTO") :]
new_env_var = old_env_var.replace("RESOTO", "FIX")
os.environ[new_env_var] = os.environ.pop(old_env_var)

0 comments on commit 509a53d

Please sign in to comment.