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

hgshelve: fix bug in qrefresh operations

Changeset 20e7872e8ff2

Parent 583d20ae744b

by Steve Borho

Changes to one file · Browse files at 20e7872e8ff2 Showing diff from parent 583d20ae744b Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgshelve.py Stacked
 
399
400
401
402
 
403
404
405
 
399
400
401
 
402
403
404
405
@@ -399,7 +399,7 @@
  def shelvefunc(ui, repo, message, match, opts):   # If an MQ patch is applied, consider all qdiff changes   if hasattr(repo, 'mq') and repo.mq.applied: - basenode = self.repo.lookup(-3) + basenode = repo.lookup(-3)   else:   basenode = repo.dirstate.parents()[0]