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

repowidget: fix python 2.5 compatibility problem

the original code is valid for python 2.6, but a syntx error for python 2.5

See http://docs.python.org/whatsnew/2.6.html#other-language-changes

Changeset 6cc4cc08840b

Parent 1e2064fc0fcf

by Adrian Buehlmann

Changes to one file · Browse files at 6cc4cc08840b Showing diff from parent 1e2064fc0fcf Diff from another changeset...

 
158
159
160
161
 
162
163
164
 
158
159
160
 
161
162
163
164
@@ -158,7 +158,7 @@
  link = item != 'cset'   if isinstance(value, basestring):   return revid_markup(value) - return revline_markup(*value, link=link) + return revline_markup(link=link, *value)   elif item in ('parents', 'children'):   csets = []   for cset in value: