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

sync: do not use bundle for incoming from p4 urls

Changeset b00b6ee1b100

Parent 2cc192e69f17

by Steve Borho

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

 
492
493
494
495
 
 
496
497
498
 
501
502
503
504
 
505
506
507
 
492
493
494
 
495
496
497
498
499
 
502
503
504
 
505
506
507
508
@@ -492,7 +492,8 @@
  ##     def inclicked(self): - if self.embedded: + url = self.currentUrl(True) + if self.embedded and not url.startswith('p4://'):   def finished(ret, output):   if ret == 0:   self.showMessage.emit(_('Incoming changesets found')) @@ -501,7 +502,7 @@
  self.showMessage.emit(_('No incoming changesets'))   else:   self.showMessage.emit(_('Incoming aborted, ret %d') % ret) - bfile = self.currentUrl(True) + bfile = url   for badchar in (':', '*', '\\', '?', '#'):   bfile = bfile.replace(badchar, '')   bfile = bfile.replace('/', '_')