Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7.1, 0.7.2, and 0.7.3

0.7.1 hgshelve: get file list from qdiffs when necessary

fixes #107

Changeset a4a7861b9245

Parent 0ff2308c8c18

by Steve Borho

Changes to one file · Browse files at a4a7861b9245 Showing diff from parent 0ff2308c8c18 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgshelve.py Stacked
 
434
435
436
437
 
438
439
440
 
434
435
436
 
437
438
439
440
@@ -434,7 +434,7 @@
  else:   basenode = repo.dirstate.parents()[0]   - changes = repo.status(match=match)[:5] + changes = repo.status(node1=basenode, match=match)[:5]   modified, added, removed = changes[:3]   files = modified + added + removed   diffopts = mdiff.diffopts(git=True, nodates=True)