# HG changeset patch # User Brendan Cully # Date 1227667508 28800 # Node ID b4ac1e2cd38c6ffb615390919cc3cc1c33652c69 # Parent efe31fbe6cf0d3fd2949fc2a74e66a7a2d42595a inotify: remove unused imports (thanks pyflakes) diff -r efe31fbe6cf0 -r b4ac1e2cd38c hgext/inotify/client.py --- 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 diff -r efe31fbe6cf0 -r b4ac1e2cd38c hgext/inotify/server.py --- 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