# HG changeset patch # User FUJIWARA Katsunori # Date 2016-02-10 13:44:28 # Node ID ac4684c21f73339392c02d1f8c71eb6f09dd4386 # Parent 08e0c4082903b41119568d2d8279e42f94a51624 check-commit: omit whitespace This is fixing for 'no whitespace around = for named parameters' check-code rule. check-code has overlooked this, because a file isn't recognized as one to be checked (this problem is fixed by subsequent patch). diff --git a/contrib/check-commit b/contrib/check-commit --- a/contrib/check-commit +++ b/contrib/check-commit @@ -46,7 +46,7 @@ def nonempty(first, second): return first return second -def checkcommit(commit, node = None): +def checkcommit(commit, node=None): exitcode = 0 printed = node is None hits = []