hgext/phabricator.py
changeset 44562 f10055b099b3
parent 44561 9bae1d1a0f4c
child 44577 3aab524a8480
--- a/hgext/phabricator.py	Sun Feb 16 17:17:41 2020 -0500
+++ b/hgext/phabricator.py	Sun Feb 16 17:47:20 2020 -0500
@@ -127,6 +127,9 @@
 eh.configitem(
     b'phabimport', b'secret', default=False,
 )
+eh.configitem(
+    b'phabimport', b'obsolete', default=False,
+)
 
 colortable = {
     b'phabricator.action.created': b'green',
@@ -1734,6 +1737,8 @@
 
     if ui.configbool(b'phabimport', b'secret'):
         opts[b'secret'] = True
+    if ui.configbool(b'phabimport', b'obsolete'):
+        opts[b'obsolete'] = True  # Handled by evolve wrapping tryimportone()
 
     def _write(patches):
         parents = repo[None].parents()