transplant: mark some undocumented options deprecated
authorMatt Mackall <mpm@selenic.com>
Thu, 25 Jun 2015 17:42:09 -0500
changeset 25828 5ae4b128a291
parent 25827 0fdf2c304019
child 25829 38cf0908bf98
transplant: mark some undocumented options deprecated
hgext/transplant.py
--- a/hgext/transplant.py	Thu Jun 25 17:41:40 2015 -0500
+++ b/hgext/transplant.py	Thu Jun 25 17:42:09 2015 -0500
@@ -608,8 +608,10 @@
     checkopts(opts, revs)
 
     if not opts.get('log'):
+        # deprecated config: transplant.log
         opts['log'] = ui.config('transplant', 'log')
     if not opts.get('filter'):
+        # deprecated config: transplant.filter
         opts['filter'] = ui.config('transplant', 'filter')
 
     tp = transplanter(ui, repo, opts)