commands.py: plugins are now sorted in alphabetical order in the Commands panel
command_str = config['command']['command']\r
module_str = config['command']['plugin']\r
\r
- for plugin in plugins:\r
+ #sort the plugins into alphabetical order\r
+ plugins_list = [key for key, value in plugins.iteritems()]\r
+ plugins_list.sort()\r
+ for plugin in plugins_list:\r
filename = ''.join([plugin, '.ini'])\r
path = lh.get_file_path(filename, ['plugins'])\r
config = ConfigObj()\r