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

clone: fix path encoding

Changeset 2ad639df93f5

Parent 72ac3b76c867

by Yuki KODAMA

Changes to one file · Browse files at 2ad639df93f5 Showing diff from parent 72ac3b76c867 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​clone.py Stacked
 
273
274
275
276
 
277
278
 
279
280
281
 
273
274
275
 
276
277
 
278
279
280
281
@@ -273,9 +273,9 @@
  cmdline.append(rev)     cmdline.append('--verbose') - cmdline.append(src) + cmdline.append(hglib.fromutf(src))   if dest: - cmdline.append(dest) + cmdline.append(hglib.fromutf(dest))     dlg = hgcmd.CmdDialog(cmdline)   dlg.run()