]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in freeze_modules (#29744)
authorKumar Aditya <rahuladitya303@gmail.com>
Wed, 24 Nov 2021 19:12:03 +0000 (00:42 +0530)
committerGitHub <noreply@github.com>
Wed, 24 Nov 2021 19:12:03 +0000 (11:12 -0800)
Tools/scripts/freeze_modules.py

index a36f74ced4187aeb3d6643816de68a3b344da6e5..74b2c4857d0881c1042ea59595825e0878966a2b 100644 (file)
@@ -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()