changeset 25828:5ae4b128a291

transplant: mark some undocumented options deprecated
author Matt Mackall <mpm@selenic.com>
date Thu, 25 Jun 2015 17:42:09 -0500
parents 0fdf2c304019
children 38cf0908bf98
files hgext/transplant.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)