import slixmpp
+from sid import __url__
+
def botcmd(*args, **kwargs):
"""Decorator for bot command functions
Automatically assigned to the "help" command."""
help_cmd = ('Type {}help <command name>'.format(self.prefix) +
- ' to get more info about that specific command.\n\n'+
- 'SRC: http://git.kaliko.me/sid.git')
+ ' to get more info about that specific command.\n\n' +
+ f'SRC: {__url__}')
if not args:
if self.__doc__:
description = self.__doc__.strip()