Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

thgconfig: use single quotes

Changeset 919e891d61c3

Parent 5770fa3107a0

by Yuki KODAMA

Changes to one file · Browse files at 919e891d61c3 Showing diff from parent 5770fa3107a0 Diff from another changeset...

 
142
143
144
145
 
146
147
148
 
381
382
383
384
 
385
386
387
 
551
552
553
554
 
555
556
557
 
700
701
702
703
 
704
705
706
 
875
876
877
878
879
 
 
880
881
882
 
1141
1142
1143
1144
 
1145
1146
1147
 
142
143
144
 
145
146
147
148
 
381
382
383
 
384
385
386
387
 
551
552
553
 
554
555
556
557
 
700
701
702
 
703
704
705
706
 
875
876
877
 
 
878
879
880
881
882
 
1141
1142
1143
 
1144
1145
1146
1147
@@ -142,7 +142,7 @@
  ' Default is the working directory.')),   (_('Description'), 'web.description', ['unknown'],   _("Textual description of the repository's purpose or" - " contents.")), + ' contents.')),   (_('Contact'), 'web.contact', ['unknown'],   _('Name or email address of the person in charge of the'   ' repository.')), @@ -381,7 +381,7 @@
  user = m.group(2)   host = m.group(3)   port = m.group(5) - folder = m.group(7) or "." + folder = m.group(7) or '.'   passwd = ''   scheme = 'ssh'   elif path.startswith('http://') or path.startswith('https://'): @@ -551,7 +551,7 @@
  except ImportError:   dialog.error_dialog(self, _('Iniparse package not found'),   _("Can't change settings without iniparse package - " - "view is readonly.")) + 'view is readonly.'))   print 'Please install http://code.google.com/p/iniparse/'   self.readonly = True   @@ -700,7 +700,7 @@
  ret = 0   else:   ret = gdialog.CustomPrompt(_('Confirm Exit'), - _("Exit after saving changes?"), self, + _('Exit after saving changes?'), self,   (_('&Yes'), _('&No (discard changes)'),   _('&Cancel')), default=2, esc=2).run()   if ret == 2: @@ -875,8 +875,8 @@
  self.pathtree = gtk.TreeView(self.pathdata)   self.pathtree.set_enable_search(False)   self.pathtree.add_events(gtk.gdk.BUTTON_PRESS_MASK) - self.pathtree.connect("cursor-changed", self._pathtree_changed) - self.pathtree.connect("button-press-event", self._pathtree_pressed) + self.pathtree.connect('cursor-changed', self._pathtree_changed) + self.pathtree.connect('button-press-event', self._pathtree_pressed)     renderer = gtk.CellRendererText()   column = gtk.TreeViewColumn(_('Alias'), renderer, text=0) @@ -1141,7 +1141,7 @@
  self.refresh_vlist()     try: - f = open(self.fn, "w") + f = open(self.fn, 'w')   f.write(str(self.ini))   f.close()   self._btn_apply.set_sensitive(False)