aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorKumar Aditya <rahuladitya303@gmail.com>2021-11-25 00:42:03 +0530
committerGitHub <noreply@github.com>2021-11-24 11:12:03 -0800
commit256f9c4588ac16b59e0fe690ccbdc4052aef1fee (patch)
tree1f313fd63030b0c05cd2120950165fb58beac565 /Tools
parent5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f (diff)
downloadcpython3-256f9c4588ac16b59e0fe690ccbdc4052aef1fee.tar.gz
Fix typo in freeze_modules (#29744)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/scripts/freeze_modules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/freeze_modules.py b/Tools/scripts/freeze_modules.py
index a36f74ced4..74b2c4857d 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()