--- a/mercurial/configitems.py Fri Jun 30 03:42:15 2017 +0200
+++ b/mercurial/configitems.py Fri Jun 30 03:42:27 2017 +0200
@@ -122,6 +122,9 @@
coreconfigitem('format', 'maxchainlen',
default=None,
)
+coreconfigitem('format', 'obsstore-version',
+ default=None,
+)
coreconfigitem('hostsecurity', 'ciphers',
default=None,
)
--- a/mercurial/obsolete.py Fri Jun 30 03:42:15 2017 +0200
+++ b/mercurial/obsolete.py Fri Jun 30 03:42:27 2017 +0200
@@ -717,7 +717,7 @@
"""Create an obsstore instance from a repo."""
# read default format for new obsstore.
# developer config: format.obsstore-version
- defaultformat = ui.configint('format', 'obsstore-version', None)
+ defaultformat = ui.configint('format', 'obsstore-version')
# rely on obsstore class default when possible.
kwargs = {}
if defaultformat is not None: