Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

thgpbranch: Use set_text instead of set_status_text

Changeset a11576459635

Parent 275136cee619

by Peer Sommerlund

Changes to one file · Browse files at a11576459635 Showing diff from parent 275136cee619 Diff from another changeset...

 
836
837
838
839
 
840
841
842
843
844
845
 
846
847
848
 
836
837
838
 
839
840
841
842
843
844
 
845
846
847
848
@@ -836,13 +836,13 @@
    def pbranch_selected(self, pbranchwidget, revid, patchname):   'if revid < 0 then the patch is listed in .hg/pgraph but not in repo' - self.stbar.set_status_text('') + self.stbar.set_text('')   pf = tempfile.TemporaryFile()   try:   try:   pf.writelines(pbranchwidget.pdiff(patchname))   except (util.Abort, hglib.RepoError), e: - self.stbar.set_status_text(str(e)) + self.stbar.set_text(str(e))   return   self.currevid = self.lastrevid = None   pf.seek(0)