##// END OF EJS Templates
progress: determine padding width portably...
Augie Fackler -
r36169:d541042f default
parent child Browse files
Show More
@@ -119,8 +119,8 b' class progbar(object):'
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:
General Comments 0
You need to be logged in to leave comments. Login now