Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

status: fix traceback when copy to clipboard

Simon reported the problem

Changeset 990f242fa663

Parent ae4098b4c6bb

by Steve Borho

Changes to one file · Browse files at 990f242fa663 Showing diff from parent ae4098b4c6bb Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
527
528
529
530
 
531
532
533
 
527
528
529
 
530
531
532
533
@@ -527,7 +527,7 @@
  return False   saves = {}   model, tpaths = treeview.get_selection().get_selected_rows() - for row, _ in tpaths: + for row, in tpaths:   wfile, cid = model[row][DM_PATH], model[row][DM_CHUNK_ID]   if wfile not in saves:   saves[wfile] = [cid]