Mercurial > evolve
changeset 1095:26334cfd4e95
evolve: fix a typo in a long function name
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 29 Aug 2014 16:11:22 +0200 |
parents | bb2c01cd096f |
children | 661f3a112f7a |
files | hgext/evolve.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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