1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Added python support to -v

This commit is contained in:
James Booth 2016-02-24 00:36:23 +00:00
parent 0fc0b3eeec
commit 2783c84a13

View File

@ -130,6 +130,12 @@ main(int argc, char **argv)
g_print("C plugins: Disabled\n");
#endif
#ifdef PROF_HAVE_PYTHON
g_print("Python plugins: Enabled\n");
#else
g_print("Python plugins: Disabled\n");
#endif
return 0;
}