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 remotecmd encoding

Changeset a05e5be23296

Parent 2ad639df93f5

by Yuki KODAMA

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

Change 1 of 1 Show Entire File hggtk/​clone.py Stacked
 
267
268
269
270
 
271
272
273
 
267
268
269
 
270
271
272
273
@@ -267,7 +267,7 @@
  cmdline += ['--config', 'http_proxy.host=']   if remotecmd:   cmdline.append('--remotecmd') - cmdline.append(remotecmd) + cmdline.append(hglib.fromutf(remotecmd))   if rev:   cmdline.append('--rev')   cmdline.append(rev)