##// END OF EJS Templates
largefiles: inline redundant toname function in status...
Mads Kiilerich -
r23044:075f55a9 default
parent child Browse files
Show More
@@ -217,12 +217,8 b' def reposetup(ui, repo):'
217 217 clean)
218 218 result = [sorted(list1 + list2)
219 219 for (list1, list2) in zip(normals, lfstatus)]
220 else:
221 def toname(f):
222 if lfutil.isstandin(f):
223 return lfutil.splitstandin(f)
224 return f
225 result = [[toname(f) for f in items]
220 else: # not against working directory
221 result = [[lfutil.splitstandin(f) or f for f in items]
226 222 for items in result]
227 223
228 224 if wlock:
General Comments 0
You need to be logged in to leave comments. Login now