configitems: register the 'convert.hg.sourcename' config
authorBoris Feld <boris.feld@octobus.net>
Fri, 30 Jun 2017 03:35:22 +0200
changeset 34169 0ef4e9e30b88
parent 34168 9bda5ce97be3
child 34170 3a09e6cecff0
configitems: register the 'convert.hg.sourcename' config
hgext/convert/__init__.py
--- a/hgext/convert/__init__.py	Fri Jun 30 03:35:12 2017 +0200
+++ b/hgext/convert/__init__.py	Fri Jun 30 03:35:22 2017 +0200
@@ -79,6 +79,9 @@
 configitem('convert', 'hg.saverev',
     default=False,
 )
+configitem('convert', 'hg.sourcename',
+    default=None,
+)
 
 # Commands definition was moved elsewhere to ease demandload job.