Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

commit: respect tortoisehg.pushafterci configurable

Changeset 98cf2772a591

Parent 84b8085ceeb4

by Steve Borho

Changes to one file · Browse files at 98cf2772a591 Showing diff from parent 84b8085ceeb4 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
311
312
313
 
 
314
315
316
 
311
312
313
314
315
316
317
318
@@ -311,6 +311,8 @@
  self.autoinc_entry = gtk.Entry()   adv_hbox.pack_start(self.autoinc_entry, False, False, 2)   self.autopush = gtk.CheckButton(_('Push after commit')) + pushafterci = self.repo.ui.configbool('tortoisehg', 'pushafterci') + self.autopush.set_active(pushafterci)   adv_hbox.pack_start(self.autopush, False, False, 2)   self.advanced_frame.add(adv_hbox)   vbox.pack_start(self.advanced_frame, False, False, 2)