changeset 7420:b4ac1e2cd38c

inotify: remove unused imports (thanks pyflakes)
author Brendan Cully <brendan@kublai.com>
date Tue, 25 Nov 2008 18:45:08 -0800
parents efe31fbe6cf0
children 4c4324476be6
files hgext/inotify/client.py hgext/inotify/server.py
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/inotify/client.py	Tue Nov 25 18:32:44 2008 -0800
+++ b/hgext/inotify/client.py	Tue Nov 25 18:45:08 2008 -0800
@@ -7,7 +7,6 @@
 # of the GNU General Public License, incorporated herein by reference.
 
 from mercurial.i18n import _
-from mercurial import ui
 import common
 import os, socket, struct
 
--- a/hgext/inotify/server.py	Tue Nov 25 18:32:44 2008 -0800
+++ b/hgext/inotify/server.py	Tue Nov 25 18:45:08 2008 -0800
@@ -7,7 +7,7 @@
 # of the GNU General Public License, incorporated herein by reference.
 
 from mercurial.i18n import _
-from mercurial import osutil, ui, util
+from mercurial import osutil, util
 import common
 import errno, os, select, socket, stat, struct, sys, tempfile, time