Commit e14062ff authored by Vincent Castellano's avatar Vincent Castellano

Fix typo

parent 5af46bdc
...@@ -1276,7 +1276,7 @@ void py_add_action_enums(PyObject *m) ...@@ -1276,7 +1276,7 @@ void py_add_action_enums(PyObject *m)
void py_add_peer_type_enums(PyObject *m) void py_add_peer_type_enums(PyObject *m)
{ {
PyModule_AddIntConstant(m, "PEER_USER", TGL_PEER_USER); PyModule_AddIntConstant(m, "PEER_USER", TGL_PEER_USER);
PyModule_AddIntConstant(m, "PEER_USER", TGL_PEER_CHAT); PyModule_AddIntConstant(m, "PEER_CHAT", TGL_PEER_CHAT);
PyModule_AddIntConstant(m, "PEER_ENCR_CHAT", TGL_PEER_ENCR_CHAT); PyModule_AddIntConstant(m, "PEER_ENCR_CHAT", TGL_PEER_ENCR_CHAT);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment