aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpython/google/protobuf/reflection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/google/protobuf/reflection.py b/python/google/protobuf/reflection.py
index c35742ce..9ba752e4 100755
--- a/python/google/protobuf/reflection.py
+++ b/python/google/protobuf/reflection.py
@@ -153,7 +153,7 @@ class GeneratedProtocolMessageType(type):
_AddMessageMethods(descriptor, cls)
_AddPrivateHelperMethods(cls)
superclass = super(GeneratedProtocolMessageType, cls)
- superclass.__init__(cls, name, bases, dictionary)
+ superclass.__init__(name, bases, dictionary)
# Stateless helpers for GeneratedProtocolMessageType below.