Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

clone: title, string cleanups

Changeset 1d9238734f7e

Parent 66358c6f9e7d

by Steve Borho

Changes to one file · Browse files at 1d9238734f7e Showing diff from parent 66358c6f9e7d Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​clone.py Stacked
 
25
26
27
28
29
 
30
31
32
 
262
263
264
265
 
266
267
268
 
25
26
27
 
 
28
29
30
31
 
261
262
263
 
264
265
266
267
@@ -25,8 +25,7 @@
  if cwd: os.chdir(cwd)     # set dialog title - title = "hg clone " - title += " - %s" % (os.getcwd()) + title = 'hg clone'   self.set_title(title)     self._settings = shlib.Settings('clone') @@ -262,7 +261,7 @@
  rev = self._rev_input.get_text()     # verify input - if src == "": + if src == '':   error_dialog(self, _('Source path is empty'), _('Please enter'))   self._src_input.grab_focus()   return False