Submitter | phabricator |
---|---|
Date | Oct. 16, 2017, 6:28 p.m. |
Message ID | <42bcc316062ae24f229a093cea1fc3a0@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/25025/ |
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 @@ -218,7 +218,12 @@ """ Returns false when note fragment can be merged to existing notes. """ - import fuzzywuzzy.fuzz as fuzz + try: + import fuzzywuzzy.fuzz as fuzz + fuzz.token_set_ratio + except ImportError: + return True + merge = True for bullet in existingnotes: score = fuzz.token_set_ratio(incoming_str, bullet)