##// END OF EJS Templates
py3: use string for "close" value in commit extras...
Gregory Szorc -
r36128:b44a4721 default
parent child Browse files
Show More
@@ -1551,7 +1551,7 b' def _docommit(ui, repo, *pats, **opts):'
1551
1551
1552 extra = {}
1552 extra = {}
1553 if opts.get('close_branch'):
1553 if opts.get('close_branch'):
1554 extra['close'] = 1
1554 extra['close'] = '1'
1555
1555
1556 if not bheads:
1556 if not bheads:
1557 raise error.Abort(_('can only close branch heads'))
1557 raise error.Abort(_('can only close branch heads'))
General Comments 0
You need to be logged in to leave comments. Login now