Mercurial > hg-stable
changeset 8067:b084d6d6f345
inotify: files is always a list: 'files or []' is redundant
files comes from match.files() : it always returns a list.
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Wed, 08 Apr 2009 13:27:28 +0900 |
parents | aece3c9e62f1 |
children | 389e2820280d |
files | hgext/inotify/__init__.py hgext/inotify/client.py |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/inotify/__init__.py Mon Apr 13 21:57:17 2009 +0200 +++ b/hgext/inotify/__init__.py Wed Apr 08 13:27:28 2009 +0900 @@ -96,7 +96,7 @@ '%s\n') % inst) if query: try: - return query(ui, repo, files or [], match, + return query(ui, repo, files, match, ignored, clean, unknown) except socket.error, err: ui.warn(_('could not talk to new inotify '