@@ -199,7 +199,7 @@ def call_command(self, CICommand):
199199 self [command ]()
200200
201201 def print_help (self , message = '' ):
202- '''Prints all sub-commands for the console command'''
202+ '''Prints all sub-commands for the console command. '''
203203
204204 # Add a header message
205205 message += '\n ' + self .prefix + self .translations [
@@ -234,7 +234,7 @@ def print_help(self, message=''):
234234 self .logger .log_message (message + '\n ' + '=' * 78 )
235235
236236 def load_plugin (self , plugin_name ):
237- '''Loads a plugin by name'''
237+ '''Loads a plugin by name. '''
238238
239239 # Is the plugin already loaded?
240240 if plugin_name in self .manager :
@@ -267,7 +267,7 @@ def load_plugin(self, plugin_name):
267267 load_plugin .args = ['<plugin>' ]
268268
269269 def unload_plugin (self , plugin_name ):
270- '''Unloads a plugin by name'''
270+ '''Unloads a plugin by name. '''
271271
272272 # Is the plugin loaded?
273273 if not plugin_name in self .manager :
@@ -290,7 +290,7 @@ def unload_plugin(self, plugin_name):
290290 unload_plugin .args = ['<plugin>' ]
291291
292292 def reload_plugin (self , plugin_name ):
293- '''Reloads a plugin by name'''
293+ '''Reloads a plugin by name. '''
294294
295295 # Unload the plugin
296296 self .unload_plugin (plugin_name )
@@ -302,7 +302,7 @@ def reload_plugin(self, plugin_name):
302302 reload_plugin .args = ['<plugin>' ]
303303
304304 def print_plugins (self ):
305- '''Prints all currently loaded plugins'''
305+ '''Prints all currently loaded plugins. '''
306306
307307 # Get the header message
308308 message = self .prefix + self .translations [
0 commit comments