Merge pull request #2826 from soltanmm/typo-fix

Fix debug annotation typo in Python.
pull/2895/head
Nathaniel Manista 10 years ago
commit 2bd1fe82f9
  1. 2
      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;
}

Loading…
Cancel
Save