Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

archive: use ctx.files(), which is available on all changectx

Changeset fdf33fdebf06

Parent f383545feb13

by Steve Borho

Changes to one file · Browse files at fdf33fdebf06 Showing diff from parent f383545feb13 Diff from another changeset...

 
280
281
282
283
 
284
285
286
 
280
281
282
 
283
284
285
286
@@ -280,7 +280,7 @@
  cmdline.append(type)   if self.files_in_rev_chk.isChecked():   ctx = self.repo[rev] - for f in ctx.added() + ctx.removed(): + for f in ctx.files():   cmdline.append('-I')   cmdline.append(f)   cmdline.append('--')