hgext/extdiff.py
changeset 51703 ca7bde5dbafb
parent 51700 7f0cb9ee0534
child 51859 b60f25f00e94
equal deleted inserted replaced
51702:b0a4de6c14f8 51703:ca7bde5dbafb
   403     cmdline,
   403     cmdline,
   404     do3way,
   404     do3way,
   405     guitool,
   405     guitool,
   406     opts,
   406     opts,
   407 ):
   407 ):
   408 
       
   409     subrepos = opts.get(b'subrepos')
   408     subrepos = opts.get(b'subrepos')
   410 
   409 
   411     # calculate list of files changed between both revs
   410     # calculate list of files changed between both revs
   412     st = ctx1a.status(ctx2, matcher, listsubrepos=subrepos)
   411     st = ctx1a.status(ctx2, matcher, listsubrepos=subrepos)
   413     mod_a, add_a, rem_a = set(st.modified), set(st.added), set(st.removed)
   412     mod_a, add_a, rem_a = set(st.modified), set(st.added), set(st.removed)