hgext/largefiles/overrides.py
changeset 48913 f254fc73d956
parent 48875 6000f5b25c9b
child 48946 642e31cb55f0
equal deleted inserted replaced
48912:a0674e916fb6 48913:f254fc73d956
   711 @eh.wrapfunction(copiesmod, b'pathcopies')
   711 @eh.wrapfunction(copiesmod, b'pathcopies')
   712 def copiespathcopies(orig, ctx1, ctx2, match=None):
   712 def copiespathcopies(orig, ctx1, ctx2, match=None):
   713     copies = orig(ctx1, ctx2, match=match)
   713     copies = orig(ctx1, ctx2, match=match)
   714     updated = {}
   714     updated = {}
   715 
   715 
   716     for k, v in pycompat.iteritems(copies):
   716     for k, v in copies.items():
   717         updated[lfutil.splitstandin(k) or k] = lfutil.splitstandin(v) or v
   717         updated[lfutil.splitstandin(k) or k] = lfutil.splitstandin(v) or v
   718 
   718 
   719     return updated
   719     return updated
   720 
   720 
   721 
   721