# HG changeset patch # User Pierre-Yves David # Date 1409321482 -7200 # Node ID 26334cfd4e958140cacefb5c5452ee1255caf43c # Parent bb2c01cd096ff2c82d1a89c03a7ce38102d28285 evolve: fix a typo in a long function name diff -r bb2c01cd096f -r 26334cfd4e95 hgext/evolve.py --- a/hgext/evolve.py Fri Aug 29 15:19:19 2014 +0200 +++ b/hgext/evolve.py Fri Aug 29 16:11:22 2014 +0200 @@ -2475,7 +2475,7 @@ repo.hook('evolve_pushobsmarkers') return wireproto.pushres(0) -def _buildpullobsmerkersboundaries(pullop): +def _buildpullobsmarkersboundaries(pullop): """small funtion returning the argument for pull markers call may to contains 'heads' and 'common'. skip the key for None. @@ -2509,7 +2509,7 @@ return None # remote opted out of obsolescence marker exchange tr = None ui = pullop.repo.ui - boundaries = _buildpullobsmerkersboundaries(pullop) + boundaries = _buildpullobsmarkersboundaries(pullop) if not set(boundaries['heads']) - set(boundaries['common']): obsexcmsg(ui, "nothing to pull\n") return None