mercurial/obsolete.py
changeset 33793 d434a7f0685c
parent 33761 e6d8ee3c9ec3
child 33798 d4b7496f7d0b
--- a/mercurial/obsolete.py	Thu Aug 03 05:12:35 2017 +0530
+++ b/mercurial/obsolete.py	Thu Aug 03 11:38:22 2017 +0200
@@ -102,7 +102,7 @@
     """Returns True if the given repository has the given obsolete option
     enabled.
     """
-    result = set(repo.ui.configlist('experimental', 'evolution'))
+    result = set(repo.ui.configlist('experimental', 'stabilization'))
     if 'all' in result:
         return True
 
@@ -1007,7 +1007,7 @@
     if 'user' not in metadata:
         metadata['user'] = repo.ui.username()
     useoperation = repo.ui.configbool('experimental',
-        'evolution.track-operation')
+        'stabilization.track-operation')
     if useoperation and operation:
         metadata['operation'] = operation
     tr = repo.transaction('add-obsolescence-marker')