# HG changeset patch # User Dirkjan Ochtman # Date 2008-11-27 15:07:13 # Node ID cf7741aa1e96ca26eec707d0609c24065353b35e # Parent c4ce828e8074c51633ceaf21078e8d2696d0a4d2 kill some trailing spaces diff --git a/hgext/inotify/__init__.py b/hgext/inotify/__init__.py --- a/hgext/inotify/__init__.py +++ b/hgext/inotify/__init__.py @@ -53,7 +53,7 @@ def reposetup(ui, repo): def status(self, match, ignored, clean, unknown=True): files = match.files() if '.' in files: - files = [] + files = [] try: if not ignored and not self.inotifyserver: result = client.query(ui, repo, files, match, False, diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -562,7 +562,7 @@ def filelog(web, req, tmpl): "branch": webutil.nodebranchnodefault(ctx), "inbranch": webutil.nodeinbranch(web.repo, ctx), "branches": webutil.nodebranchdict(web.repo, ctx)}) - + if limit > 0: l = l[:limit] diff --git a/mercurial/templater.py b/mercurial/templater.py --- a/mercurial/templater.py +++ b/mercurial/templater.py @@ -137,7 +137,7 @@ class templater(object): stream = util.increasingchunks(stream, min=self.minchunk, max=self.maxchunk) return stream - + def expand(self, t, **map): '''Perform expansion. t is name of map element to expand. map contains added elements for use during expansion. Is a generator.'''