##// END OF EJS Templates
Fix hg qdiff <file>
Alexis S. L. Carvalho -
r2097:4d2c2597 default
parent child Browse files
Show More
@@ -1108,7 +1108,8 def refresh(ui, repo, **opts):
1108
1108
1109 def diff(ui, repo, *files, **opts):
1109 def diff(ui, repo, *files, **opts):
1110 """diff of the current patch"""
1110 """diff of the current patch"""
1111 repomap[repo].diff(repo, files)
1111 # deep in the dirstate code, the walkhelper method wants a list, not a tuple
1112 repomap[repo].diff(repo, list(files))
1112 return 0
1113 return 0
1113
1114
1114 def lastsavename(path):
1115 def lastsavename(path):
General Comments 0
You need to be logged in to leave comments. Login now