From c3854d26f658fd399c53e81f38d3d4d98c32b63f Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Fri, 15 Jan 2021 09:27:30 -0800 Subject: [PATCH] migrate_script: prefix @ to python2 (#4931) As suggested by Jukka in https://github.com/python/typeshed/issues/2491 Co-authored-by: hauntsaninja <> --- scripts/migrate_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/migrate_script.py b/scripts/migrate_script.py index 3315da683..6ba9bc64b 100644 --- a/scripts/migrate_script.py +++ b/scripts/migrate_script.py @@ -15,7 +15,7 @@ STDLIB_NAMESPACE = "stdlib" THIRD_PARTY_NAMESPACE = "stubs" DEFAULT_VERSION = "0.1" DEFAULT_PY3_VERSION = "3.6" -PY2_NAMESPACE = "python2" +PY2_NAMESPACE = "@python2" OUTPUT_DIR = "out" # Third party imports (type ignored) of missing stubs.