Show More
@@ -217,12 +217,8 b' def reposetup(ui, repo):' | |||||
217 | clean) |
|
217 | clean) | |
218 | result = [sorted(list1 + list2) |
|
218 | result = [sorted(list1 + list2) | |
219 | for (list1, list2) in zip(normals, lfstatus)] |
|
219 | for (list1, list2) in zip(normals, lfstatus)] | |
220 | else: |
|
220 | else: # not against working directory | |
221 | def toname(f): |
|
221 | result = [[lfutil.splitstandin(f) or f for f in items] | |
222 | if lfutil.isstandin(f): |
|
|||
223 | return lfutil.splitstandin(f) |
|
|||
224 | return f |
|
|||
225 | result = [[toname(f) for f in items] |
|
|||
226 | for items in result] |
|
222 | for items in result] | |
227 |
|
223 | |||
228 | if wlock: |
|
224 | if wlock: |
General Comments 0
You need to be logged in to leave comments.
Login now