# HG changeset patch # User Brodie Rao # Date 1266130351 18000 # Node ID 5ddde896a19d7a56dbc65082c02adaf8f6b88330 # Parent a94804a8087d94c50db8d3f925c041e39aa98890 remove unused imports diff -r a94804a8087d -r 5ddde896a19d hgext/bookmarks.py --- a/hgext/bookmarks.py Sun Feb 14 13:58:30 2010 +0100 +++ b/hgext/bookmarks.py Sun Feb 14 01:52:31 2010 -0500 @@ -30,7 +30,7 @@ from mercurial.i18n import _ from mercurial.node import nullid, nullrev, hex, short -from mercurial import util, commands, localrepo, repair, extensions +from mercurial import util, commands, repair, extensions import os def write(repo): diff -r a94804a8087d -r 5ddde896a19d hgext/color.py --- a/hgext/color.py Sun Feb 14 13:58:30 2010 +0100 +++ b/hgext/color.py Sun Feb 14 01:52:31 2010 -0500 @@ -65,7 +65,7 @@ import os, sys -from mercurial import cmdutil, commands, extensions, error +from mercurial import cmdutil, commands, extensions from mercurial.i18n import _ # start and stop parameters for effects diff -r a94804a8087d -r 5ddde896a19d hgext/inotify/__init__.py --- a/hgext/inotify/__init__.py Sun Feb 14 13:58:30 2010 +0100 +++ b/hgext/inotify/__init__.py Sun Feb 14 01:52:31 2010 -0500 @@ -11,7 +11,6 @@ # todo: socket permissions from mercurial.i18n import _ -from mercurial import cmdutil, util import server from client import client, QueryFailed diff -r a94804a8087d -r 5ddde896a19d hgext/inotify/linuxserver.py --- a/hgext/inotify/linuxserver.py Sun Feb 14 13:58:30 2010 +0100 +++ b/hgext/inotify/linuxserver.py Sun Feb 14 01:52:31 2010 -0500 @@ -8,7 +8,6 @@ from mercurial.i18n import _ from mercurial import osutil, util -import common import server import errno, os, select, stat, sys, time diff -r a94804a8087d -r 5ddde896a19d hgext/progress.py --- a/hgext/progress.py Sun Feb 14 13:58:30 2010 +0100 +++ b/hgext/progress.py Sun Feb 14 01:52:31 2010 -0500 @@ -39,7 +39,6 @@ or + for the first num characters. """ -import math import sys import time diff -r a94804a8087d -r 5ddde896a19d mercurial/cmdutil.py --- a/mercurial/cmdutil.py Sun Feb 14 13:58:30 2010 +0100 +++ b/mercurial/cmdutil.py Sun Feb 14 01:52:31 2010 -0500 @@ -7,7 +7,7 @@ from node import hex, nullid, nullrev, short from i18n import _ -import os, sys, errno, re, glob, tempfile, time +import os, sys, errno, re, glob, tempfile import mdiff, bdiff, util, templater, patch, error, encoding, templatekw import match as _match diff -r a94804a8087d -r 5ddde896a19d mercurial/copies.py --- a/mercurial/copies.py Sun Feb 14 13:58:30 2010 +0100 +++ b/mercurial/copies.py Sun Feb 14 01:52:31 2010 -0500 @@ -5,7 +5,6 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -from i18n import _ import util import heapq