Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0.1, 1.0.2, and 1.0.3

stable csinfo: support '@' divider for converted svn revision

Closes #1051

Changeset ff696cea5899

Parent 73b858c678e7

by Yuki KODAMA

Changes to one file · Browse files at ff696cea5899 Showing diff from parent 73b858c678e7 Diff from another changeset...

 
296
297
298
299
 
 
 
 
300
301
302
 
296
297
298
 
299
300
301
302
303
304
305
@@ -296,7 +296,10 @@
  extra = ctx.extra()   cvt = extra.get('convert_revision', '')   if cvt.startswith('svn:'): - return cvt.split('/', 1)[-1] + result = cvt.split('/', 1)[-1] + if cvt != result: + return result + return cvt.split('@')[-1]   else:   return None   elif item == 'ishead':