Mercurial > hg > mercurial-crew
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 +++ b/contrib/perf.py @@ -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)