blob: db23d06854489e8176867ceaea97ccf07073c0ef (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import os
from src import IRCBot, ModuleManager, utils
class Module(ModuleManager.BaseModule):
@utils.hook("received.command.version")
def version(self, event):
commit = utils.git_commit(self.bot.directory)
out = "Version: BitBot %s" % IRCBot.VERSION
if not commit == None:
branch, commit = commit
out = "%s (%s@%s)" % (out, branch or "", commit)
event["stdout"].write(out)
@utils.hook("received.command.source")
def source(self, event):
event["stdout"].write("Source: %s" % IRCBot.SOURCE)
|