mercurial/bundle2.py
changeset 49336 290c29df1915
parent 48992 bde2e4ef968a
child 49648 9be765b82a90
--- a/mercurial/bundle2.py	Wed May 25 11:53:34 2022 +0200
+++ b/mercurial/bundle2.py	Wed May 18 10:39:45 2022 +0100
@@ -1692,7 +1692,7 @@
         raise error.ProgrammingError(b'unknown bundle type: %s' % bundletype)
 
     caps = {}
-    if b'obsolescence' in opts:
+    if opts.get(b'obsolescence', False):
         caps[b'obsmarkers'] = (b'V1',)
     bundle = bundle20(ui, caps)
     bundle.setcompression(compression, compopts)