Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable repowidget: convert bundle path back to local encoding (fixes #233)

Changeset 4c3048107c17

Parent e12918609c2e

by Steve Borho

Changes to one file · Browse files at 4c3048107c17 Showing diff from parent e12918609c2e Diff from another changeset...

 
286
287
288
289
 
290
291
292
 
286
287
288
 
289
290
291
292
@@ -286,7 +286,7 @@
  def setBundle(self, bfile):   if self.bundle:   self.clearBundle() - self.bundle = unicode(bfile) + self.bundle = hglib.fromunicode(bfile)   oldlen = len(self.repo)   self.repo = thgrepo.repository(self.repo.ui, self.repo.root,   bundle=self.bundle)