diff options
author | Thomas Colthurst <thomaswc@gmail.com> | 2018-06-29 14:07:29 -0400 |
---|---|---|
committer | Jie Luo <anandolee@gmail.com> | 2018-06-29 11:07:29 -0700 |
commit | 1ae2cc02b668c5f8efac4cebb8029e095935dbbd (patch) | |
tree | 3655fd624c0e633b24f688b9018f8b0621f02d0d /python | |
parent | f25e7edfa40c12300cf7dd3837b82841d095a79a (diff) |
Fix capsule name. (#4836)
Internal convert file was broken. Change the capsule to the correct name
Diffstat (limited to 'python')
-rw-r--r-- | python/google/protobuf/proto_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/google/protobuf/proto_api.h b/python/google/protobuf/proto_api.h index 64d8dda9..5c076d23 100644 --- a/python/google/protobuf/proto_api.h +++ b/python/google/protobuf/proto_api.h @@ -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; } |