Submitter | Martin von Zweigbergk |
---|---|
Date | Sept. 17, 2014, 8:40 p.m. |
Message ID | <0e7f51097cdb5364b0fb.1410986425@handduk2.mtv.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/5861/ |
State | Superseded |
Commit | 8c8fe120670f320c7f3a775ce54a48610149de65 |
Headers | show |
Comments
Patch
diff --git a/hgext/largefiles/reposetup.py b/hgext/largefiles/reposetup.py --- a/hgext/largefiles/reposetup.py +++ b/hgext/largefiles/reposetup.py @@ -223,9 +223,10 @@ normals = [[fn for fn in filelist if not lfutil.isstandin(fn)] for filelist in result] - lfiles = (modified, added, removed, missing, [], [], clean) + lfstatus = (modified, added, removed, missing, [], [], + clean) result = [sorted(list1 + list2) - for (list1, list2) in zip(normals, lfiles)] + for (list1, list2) in zip(normals, lfstatus)] if not listunknown: result[4] = [] if not listignored: