hgext/largefiles/overrides.py
changeset 49854 cb3918e5bc77
parent 48946 642e31cb55f0
child 49910 7b474609f199
equal deleted inserted replaced
49853:e63ab79b2fa1 49854:cb3918e5bc77
  1434         if ui.debugflag:
  1434         if ui.debugflag:
  1435             toupload = {}
  1435             toupload = {}
  1436 
  1436 
  1437             def addfunc(fn, lfhash):
  1437             def addfunc(fn, lfhash):
  1438                 if fn not in toupload:
  1438                 if fn not in toupload:
  1439                     toupload[fn] = []
  1439                     toupload[fn] = []  # pytype: disable=unsupported-operands
  1440                 toupload[fn].append(lfhash)
  1440                 toupload[fn].append(lfhash)
  1441                 lfhashes.add(lfhash)
  1441                 lfhashes.add(lfhash)
  1442 
  1442 
  1443             def showhashes(fn):
  1443             def showhashes(fn):
  1444                 for lfhash in sorted(toupload[fn]):
  1444                 for lfhash in sorted(toupload[fn]):