Mercurial > hg-stable
changeset 8731:f037187a6f68
cleanup: removed unused imports
author | Henri Wiechers <hwiechers@gmail.com> |
---|---|
date | Sun, 07 Jun 2009 21:16:05 +0200 |
parents | 01f0ddb90342 |
children | 3507f6c7715c |
files | mercurial/cmdutil.py mercurial/localrepo.py |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Mon Jun 08 00:14:24 2009 +0200 +++ b/mercurial/cmdutil.py Sun Jun 07 21:16:05 2009 +0200 @@ -7,7 +7,7 @@ from node import hex, nullid, nullrev, short from i18n import _ -import os, sys, bisect, stat, errno, re, glob +import os, sys, errno, re, glob import mdiff, bdiff, util, templater, patch, error, encoding import match as _match
--- a/mercurial/localrepo.py Mon Jun 08 00:14:24 2009 +0200 +++ b/mercurial/localrepo.py Sun Jun 07 21:16:05 2009 +0200 @@ -14,7 +14,7 @@ import match as match_ import merge as merge_ from lock import release -import weakref, stat, errno, os, time, inspect, bisect +import weakref, stat, errno, os, time, inspect propertycache = util.propertycache class localrepository(repo.repository):