Mercurial > hg-stable
diff hgext/releasenotes.py @ 34813:288fad8c55f9
releasenotes: show a warning if fuzzywuzzy is not present
Differential Revision: https://phab.mercurial-scm.org/D1121
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Mon, 16 Oct 2017 22:46:37 +0530 |
parents | bc2caa4b4480 |
children | e68dd1909af3 |
line wrap: on
line diff
--- a/hgext/releasenotes.py Mon Oct 16 22:46:11 2017 +0530 +++ b/hgext/releasenotes.py Mon Oct 16 22:46:37 2017 +0530 @@ -100,6 +100,10 @@ This is used to combine multiple sources of release notes together. """ + if not fuzz: + ui.warn(_("module 'fuzzywuzzy' not found, merging of similar " + "releasenotes is disabled\n")) + for section in other: existingnotes = converttitled(self.titledforsection(section)) + \ convertnontitled(self.nontitledforsection(section))