tests: update test-log-exthook to pass our import checker

This commit is contained in:
Augie Fackler 2017-08-22 16:58:13 -04:00
parent 6f701f209e
commit e97a9bbde9

View File

@ -2,8 +2,12 @@ Test hg log changeset printer external hook
-------------------------------------------
$ cat > $TESTTMP/logexthook.py <<EOF
> from mercurial import repair, commands
> from mercurial import cmdutil
> from __future__ import absolute_import
> from mercurial import (
> cmdutil,
> commands,
> repair,
> )
> def rot13description(self, ctx):
> summary = "summary".encode('rot13')
> description = ctx.description().strip().splitlines()[0].encode('rot13')