aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2015-08-12 08:23:52 -0700
committerGravatar Nathaniel Manista <nathaniel@google.com>2015-08-12 08:23:52 -0700
commit2bd1fe82f9755563797f87bd426e838bac4c4866 (patch)
treefa3a95862eb3b68e7548ff631562efe13092392b /src/python/grpcio
parentb4b920486e44b09c68498be3ed72e5f0d186d946 (diff)
parent1116b0b4fb538e68044cf42ed8307ce1db96a6b8 (diff)
Merge pull request #2826 from soltanmm/typo-fix
Fix debug annotation typo in Python.
Diffstat (limited to 'src/python/grpcio')
-rw-r--r--src/python/grpcio/grpc/_adapter/_c/types/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/grpc/_adapter/_c/types/server.c b/src/python/grpcio/grpc/_adapter/_c/types/server.c
index c2190ea672..2a11d09d21 100644
--- a/src/python/grpcio/grpc/_adapter/_c/types/server.c
+++ b/src/python/grpcio/grpc/_adapter/_c/types/server.c
@@ -96,7 +96,7 @@ Server *pygrpc_Server_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
PyObject *py_args;
grpc_channel_args c_args;
char *keywords[] = {"cq", "args", NULL};
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!O:Channel", keywords,
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!O:Server", keywords,
&pygrpc_CompletionQueue_type, &cq, &py_args)) {
return NULL;
}