# HG changeset patch # User Pierre-Yves David # Date 2017-06-30 01:28:28 # Node ID 640a0760e666f498645702b5aadcde572defee30 # Parent 21383dbb3611a318bc52855114c1a1972cdfa301 configitems: register the 'bookmarks.pushing' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -59,6 +59,10 @@ coreconfigitem = getitemregister(coreite coreconfigitem('auth', 'cookiefile', default=None, ) +# bookmarks.pushing: internal hack for discovery +coreconfigitem('bookmarks', 'pushing', + default=list, +) coreconfigitem('color', 'mode', default='auto', )