Show More
@@ -221,11 +221,8 b' def showdiffstat(repo, ctx, templ, **arg' | |||
|
221 | 221 | def showextras(**args): |
|
222 | 222 | """:extras: List of dicts with key, value entries of the 'extras' |
|
223 | 223 | field of this changeset.""" |
|
224 | templ = args['templ'] | |
|
225 |
for |
|
|
226 | args = args.copy() | |
|
227 | args.update(dict(key=key, value=value)) | |
|
228 | yield templ('extra', **args) | |
|
224 | yield showlist('extra', sorted(dict(key=a, value=b) | |
|
225 | for (a, b) in args['ctx'].extra().items()), **args) | |
|
229 | 226 | |
|
230 | 227 | def showfileadds(**args): |
|
231 | 228 | """:file_adds: List of strings. Files added by this changeset.""" |
General Comments 0
You need to be logged in to leave comments.
Login now