changeset 42547:6a3872e34503

extensions: add shelve to _builtin This is a follow-up patch to 3de4f17f4824. This adds `shelve` to `extensions._builtin` so that the shelve extension is silently ignored. Differential Revision: https://phab.mercurial-scm.org/D6589
author Navaneeth Suresh <navaneeths1998@gmail.com>
date Sun, 30 Jun 2019 13:04:26 +0530
parents 904e0da2e195
children 4ebbd7c4a3c5
files mercurial/extensions.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/extensions.py	Sun Jun 30 15:10:56 2019 +0900
+++ b/mercurial/extensions.py	Sun Jun 30 13:04:26 2019 +0530
@@ -43,7 +43,8 @@
     'progress',
     'interhg',
     'inotify',
-    'hgcia'
+    'hgcia',
+    'shelve',
 }
 
 def extensions(ui=None):