Skip to content
Snippets Groups Projects
Commit 02750005 authored by sliquister's avatar sliquister
Browse files

bookmarks: refactor in preparation for next commit

Differential Revision: https://phab.mercurial-scm.org/D8116
parent edaae361
No related branches found
No related tags found
No related merge requests found
......@@ -463,6 +463,10 @@
return bool(bmchanges)
def isdivergent(b):
return b'@' in b and not b.endswith(b'@')
def listbinbookmarks(repo):
# We may try to list bookmarks on a repo type that does not
# support it (e.g., statichttprepository).
......@@ -471,7 +475,7 @@
hasnode = repo.changelog.hasnode
for k, v in pycompat.iteritems(marks):
# don't expose local divergent bookmarks
if hasnode(v) and (b'@' not in k or k.endswith(b'@')):
if hasnode(v) and not isdivergent(k):
yield k, v
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment