Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

sync: replace \n with ^M in display command line

Fixes munging of outgoing command lines

Changeset 7583aeb07247

Parent 82ca67c8c4d2

by Steve Borho

Changes to one file · Browse files at 7583aeb07247 Showing diff from parent 82ca67c8c4d2 Diff from another changeset...

 
424
425
426
427
 
428
429
430
 
424
425
426
 
427
428
429
430
@@ -424,7 +424,7 @@
  cmdline.append(val)   url = self.currentUrl(False)   safeurl = self.currentUrl(True) - display = ' '.join(cmdline + [safeurl]) + display = ' '.join(cmdline + [safeurl]).replace('\n', '^M')   cmdline.append(url)   self.cmd.run(cmdline, display=display)