##// END OF EJS Templates
absorb: use new function for getting first line of string...
Martin von Zweigbergk -
r49891:0f0e3830 default
parent child Browse files
Show More
@@ -1062,7 +1062,7 b' def absorb(ui, repo, stack=None, targetc'
1062 fm.context(ctx=ctx)
1062 fm.context(ctx=ctx)
1063 fm.data(linetype=b'changeset')
1063 fm.data(linetype=b'changeset')
1064 fm.write(b'node', b'%-7.7s ', ctx.hex(), label=b'absorb.node')
1064 fm.write(b'node', b'%-7.7s ', ctx.hex(), label=b'absorb.node')
1065 descfirstline = ctx.description().splitlines()[0]
1065 descfirstline = stringutil.firstline(ctx.description())
1066 fm.write(
1066 fm.write(
1067 b'descfirstline',
1067 b'descfirstline',
1068 b'%s\n',
1068 b'%s\n',
General Comments 0
You need to be logged in to leave comments. Login now