# HG changeset patch # User Alexis S. L. Carvalho # Date 1145472087 25200 # Node ID 4d2c2597876fb1a5d55d3d0a6a99da3557e252ac # Parent f5ebe964c6be7965f14a46adbdae608a57bf0a02 Fix hg qdiff diff -r f5ebe964c6be -r 4d2c2597876f hgext/mq.py --- a/hgext/mq.py Wed Apr 19 11:41:25 2006 -0700 +++ b/hgext/mq.py Wed Apr 19 11:41:27 2006 -0700 @@ -1108,7 +1108,8 @@ def diff(ui, repo, *files, **opts): """diff of the current patch""" - repomap[repo].diff(repo, files) + # deep in the dirstate code, the walkhelper method wants a list, not a tuple + repomap[repo].diff(repo, list(files)) return 0 def lastsavename(path):