# HG changeset patch # User Franz Glasner # Date 1538288070 -7200 # Node ID 3c7df52ebd83aae6dffde28a0af9d6f8b2022001 # Parent 83843b3de6e50930cf808651361955c6aeed3fd5 Drop a comment regarting the contents of the "match" argument when committing diff -r 83843b3de6e5 -r 3c7df52ebd83 extensions/timestamps.py --- a/extensions/timestamps.py Wed Sep 26 01:18:23 2018 +0200 +++ b/extensions/timestamps.py Sun Sep 30 08:14:30 2018 +0200 @@ -574,6 +574,10 @@ def commit(self, text="", user=None, date=None, match=None, force=False, editor=False, extra=None, *args, **kwargs): self.ui.debug("TimestampedRepo.commit()") + # + # match: "hg ci" -> alwaysmatcher + # "hg ci file1 ... -> patternmatcher with the files + # super(TimestampedRepo, self).commit( *args, text=text, user=user, date=date, match=match, force=force,