1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-25 10:42:18 -05:00

Import hexchat automatically when calling /py exec

This commit is contained in:
TingPing 2013-05-09 23:45:04 -03:00
parent 494364d437
commit beb3ab506d

View File

@ -2162,6 +2162,7 @@ IInterp_Exec(char *command)
memcpy(buffer, command, len);
buffer[len] = '\n';
buffer[len+1] = 0;
PyRun_SimpleString("import hexchat");
o = PyRun_StringFlags(buffer, Py_single_input, d, d, NULL);
g_free(buffer);
if (o == NULL) {