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 about: fix too many values to unpack error when splitting version data

Changeset a85efe8bd703

Parent 1bd3b5c595bf

by Yuya Nishihara

Changes to one file · Browse files at a85efe8bd703 Showing diff from parent 1bd3b5c595bf Diff from another changeset...

 
172
173
174
175
 
176
177
178
 
172
173
174
 
175
176
177
178
@@ -172,7 +172,7 @@
  platform = IsX64() and 'x64' or 'x86'   # linux2 for Linux, darwin for OSX   for line in f[2:]: - p, _url = line.split(':') + p, _url = line.split(':', 1)   if platform == p:   upgradeurl = _url.strip()   break