Fix capsule name. (#4836)

Internal convert file was broken. Change the capsule to the correct name
This commit is contained in:
Thomas Colthurst 2018-06-29 14:07:29 -04:00 committed by Jie Luo
parent f25e7edfa4
commit 1ae2cc02b6

View File

@ -81,7 +81,7 @@ struct PyProto_API {
inline const char* PyProtoAPICapsuleName() {
static const char kCapsuleName[] =
"protobuf.python.google.protobuf.cpp._message.proto_API";
"google.protobuf.pyext._message.proto_API";
return kCapsuleName;
}