show branch name in !version output
This commit is contained in:
parent
09fe1c5a70
commit
983c7151ae
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ class Module(ModuleManager.BaseModule):
|
|||
ref = None
|
||||
with open(head_filepath, "r") as head_file:
|
||||
ref = head_file.readline().split(" ", 1)[1].strip()
|
||||
branch = ref.rsplit("/", 1)[1]
|
||||
|
||||
ref_filepath = os.path.join(git_dir, ref)
|
||||
if os.path.isfile(ref_filepath):
|
||||
|
@ -19,7 +20,7 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
out = "Version: BitBot %s" % IRCBot.VERSION
|
||||
if not commit_hash == None:
|
||||
out = "%s (%s)" % (out, commit_hash[:8])
|
||||
out = "%s (%s@%s)" % (out, branch, commit_hash[:8])
|
||||
event["stdout"].write(out)
|
||||
|
||||
@utils.hook("received.command.source")
|
||||
|
|
Loading…
Reference in a new issue