##// END OF EJS Templates
releasenotes: show a warning if fuzzywuzzy is not present...
Pulkit Goyal -
r34814:288fad8c default
parent child Browse files
Show More
@@ -100,6 +100,10 b' class parsedreleasenotes(object):'
100
100
101 This is used to combine multiple sources of release notes together.
101 This is used to combine multiple sources of release notes together.
102 """
102 """
103 if not fuzz:
104 ui.warn(_("module 'fuzzywuzzy' not found, merging of similar "
105 "releasenotes is disabled\n"))
106
103 for section in other:
107 for section in other:
104 existingnotes = converttitled(self.titledforsection(section)) + \
108 existingnotes = converttitled(self.titledforsection(section)) + \
105 convertnontitled(self.nontitledforsection(section))
109 convertnontitled(self.nontitledforsection(section))
General Comments 0
You need to be logged in to leave comments. Login now