--- a/plugin.py Fri Nov 09 15:21:44 2018 +0800
+++ b/plugin.py Wed Nov 21 00:22:32 2018 +0800
hghelp = wrap(hghelp, ['text'])
- def changeLog(self, repo, rev):
+ def changelog(self, repo, rev):
tmpl = '{rev}:{node|short}\n{date|age}\n{author|person}\n{files}\n{desc}'
cmd = "-R %s log -v --limit 1 --template '%s' -r %s" \
def crew(self, irc, msg, args, rev):
"gets the changelog message for the given revision of the crew repository"
- cl = self.changeLog('/home/brendan/hg/mirror/mercurial/crew', rev)
+ cl = self.changelog('/home/brendan/hg/mirror/mercurial/crew', rev)
crew = wrap(crew, ['revision'])
def main(self, irc, msg, args, rev):
"gets the changelog message for the given revision of the crew repository"
- cl = self.changeLog('/home/hg/repos/hg', rev)
+ cl = self.changelog('/home/hg/repos/hg', rev)
main = wrap(main, ['revision'])