aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorThomas Colthurst <thomaswc@gmail.com>2018-06-29 14:07:29 -0400
committerJie Luo <anandolee@gmail.com>2018-06-29 11:07:29 -0700
commit1ae2cc02b668c5f8efac4cebb8029e095935dbbd (patch)
tree3655fd624c0e633b24f688b9018f8b0621f02d0d /python
parentf25e7edfa40c12300cf7dd3837b82841d095a79a (diff)
downloadprotobuf-1ae2cc02b668c5f8efac4cebb8029e095935dbbd.tar.gz
protobuf-1ae2cc02b668c5f8efac4cebb8029e095935dbbd.tar.bz2
protobuf-1ae2cc02b668c5f8efac4cebb8029e095935dbbd.zip
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.h2
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;
}