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

repowidget: limit link split to a single colon

subrepo paths will often have colons in them on Windows.

Closes #77

Changeset 4cd330d3188f

Parent 6215f24e4c65

by Steve Borho

Changes to one file · Browse files at 4cd330d3188f Showing diff from parent 6215f24e4c65 Diff from another changeset...

 
215
216
217
218
 
219
220
221
 
215
216
217
 
218
219
220
221
@@ -215,7 +215,7 @@
  handlers = {'cset': self.goto,   'subrepo': self.repoLinkClicked.emit}   if ':' in link: - scheme, param = link.split(':') + scheme, param = link.split(':', 1)   hdr = handlers.get(scheme)   if hdr:   return hdr(param)