Submitter | phabricator |
---|---|
Date | Oct. 17, 2017, 2:16 p.m. |
Message ID | <ac168f78e08d898c52ed4426401d0aaa@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/25101/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/releasenotes.py b/hgext/releasenotes.py --- a/hgext/releasenotes.py +++ b/hgext/releasenotes.py @@ -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))