mercurial/progress.py
changeset 36151 d541042f32f6
parent 34746 54fa3db5becf
child 36152 7f5108e58083
equal deleted inserted replaced
36150:fa4d333cac58 36151:d541042f32f6
   117             add = ''
   117             add = ''
   118             if indicator == 'topic':
   118             if indicator == 'topic':
   119                 add = topic
   119                 add = topic
   120             elif indicator == 'number':
   120             elif indicator == 'number':
   121                 if total:
   121                 if total:
   122                     add = ('% ' + str(len(str(total))) +
   122                     padamount = '%d' % len(str(total))
   123                            's/%s') % (pos, total)
   123                     add = ('% '+ padamount + 's/%s') % (pos, total)
   124                 else:
   124                 else:
   125                     add = str(pos)
   125                     add = str(pos)
   126             elif indicator.startswith('item') and item:
   126             elif indicator.startswith('item') and item:
   127                 slice = 'end'
   127                 slice = 'end'
   128                 if '-' in indicator:
   128                 if '-' in indicator: