##// END OF EJS Templates
py3: handle keyword arguments in hgext/releasenotes.py...
Pulkit Goyal -
r35004:e68dd190 default
parent child Browse files
Show More
@@ -25,6 +25,7 b' from mercurial import ('
25 error,
25 error,
26 minirst,
26 minirst,
27 node,
27 node,
28 pycompat,
28 registrar,
29 registrar,
29 scmutil,
30 scmutil,
30 util,
31 util,
@@ -570,6 +571,8 b' def releasenotes(ui, repo, file_=None, *'
570 admonitions along with their title. This also includes the custom
571 admonitions along with their title. This also includes the custom
571 admonitions (if any).
572 admonitions (if any).
572 """
573 """
574
575 opts = pycompat.byteskwargs(opts)
573 sections = releasenotessections(ui, repo)
576 sections = releasenotessections(ui, repo)
574
577
575 listflag = opts.get('list')
578 listflag = opts.get('list')
General Comments 0
You need to be logged in to leave comments. Login now