# HG changeset patch # User Pierre-Yves David # Date 1498786038 -7200 # Node ID 21383dbb3611a318bc52855114c1a1972cdfa301 # Parent 95c57596b3807421eb10316cb6247735cc6ed746 configitems: register the 'auth.cookiefile' config diff -r 95c57596b380 -r 21383dbb3611 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:32:09 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:27:18 2017 +0200 @@ -56,6 +56,9 @@ coreconfigitem = getitemregister(coreitems) +coreconfigitem('auth', 'cookiefile', + default=None, +) coreconfigitem('color', 'mode', default='auto', )