Mercurial > public > mercurial-scm > hg-stable
diff contrib/perf.py @ 19786:fe8795dee77d
perf: rearrange imports of changelong and manifest to appease check-code
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 20 Sep 2013 10:14:59 -0400 |
parents | 79e5de2bfa8c |
children | 175c6fd8cacc |
line wrap: on
line diff
--- a/contrib/perf.py Mon Sep 23 13:26:11 2013 -0700 +++ b/contrib/perf.py Fri Sep 20 10:14:59 2013 -0400 @@ -87,7 +87,8 @@ @command('perftags') def perftags(ui, repo): - import mercurial.changelog, mercurial.manifest + import mercurial.changelog + import mercurial.manifest def t(): repo.changelog = mercurial.changelog.changelog(repo.sopener) repo.manifest = mercurial.manifest.manifest(repo.sopener)