Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.5, 2.1, and 2.1.1

stable tag: always provide two arguments to self.set_status() (fixes #745)

Changeset 04ca367f8eeb

Parent 12c8032237b7

by Steve Borho

Changes to one file · Browse files at 04ca367f8eeb Showing diff from parent 12c8032237b7 Diff from another changeset...

 
289
290
291
292
 
293
294
295
296
 
297
298
299
 
289
290
291
 
292
293
294
295
 
296
297
298
299
@@ -289,11 +289,11 @@
  tagtype = self.repo.tagtype(tag)   if local:   if tagtype != 'local': - self.set_status(_("tag '%s' is not a local tag") % tagu) + self.set_status(_("tag '%s' is not a local tag") % tagu, False)   return   else:   if tagtype != 'global': - self.set_status(_("tag '%s' is not a global tag") % tagu) + self.set_status(_("tag '%s' is not a global tag") % tagu, False)   return   parents = self.repo.parents()   if len(parents) > 1: