Skip to content
This repository was archived by the owner on Apr 27, 2019. It is now read-only.

Commit 69ff92d

Browse files
committed
Fixed issue where plugin_list was returning %s and not values
1 parent 3f66ec0 commit 69ff92d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

plugins/plugin_manager_plugin/plugin_manager_plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def plugin_list(self, data):
2727
]
2828

2929
self.protocol.send_chat_message(
30-
'Currently loaded plugins: ^yellow;%s'.format(
31-
'^green;, ^yellow;'.join(
30+
'Currently loaded plugins: ^green; {}'.format(
31+
'^yellow;, ^green;'.join(
3232
[
3333
plugin
3434
for plugin in self.plugin_manager.plugins.iterkeys()
@@ -39,8 +39,8 @@ def plugin_list(self, data):
3939

4040
if len(inactive_plugins) > 0:
4141
self.protocol.send_chat_message(
42-
'Inactive plugins: ^red;%s'.format(
43-
'^green;, ^red;'.join(inactive_plugins)
42+
'Inactive plugins: ^red; {}'.format(
43+
'^yellow;, ^red;'.join(inactive_plugins)
4444
)
4545
)
4646

0 commit comments

Comments
 (0)