diff options
author | Kumar Aditya <rahuladitya303@gmail.com> | 2021-11-24 19:12:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 19:12:03 (GMT) |
commit | 256f9c4588ac16b59e0fe690ccbdc4052aef1fee (patch) | |
tree | 1f313fd63030b0c05cd2120950165fb58beac565 /Tools | |
parent | 5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f (diff) | |
download | cpython-256f9c4588ac16b59e0fe690ccbdc4052aef1fee.zip cpython-256f9c4588ac16b59e0fe690ccbdc4052aef1fee.tar.gz cpython-256f9c4588ac16b59e0fe690ccbdc4052aef1fee.tar.bz2 |
Fix typo in freeze_modules (#29744)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/freeze_modules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/freeze_modules.py b/Tools/scripts/freeze_modules.py index a36f74c..74b2c48 100644 --- a/Tools/scripts/freeze_modules.py +++ b/Tools/scripts/freeze_modules.py @@ -726,5 +726,5 @@ def main(): if __name__ == '__main__': argv = sys.argv[1:] if argv: - sys.exit('ERROR: got unexpected args {argv}') + sys.exit(f'ERROR: got unexpected args {argv}') main() |