changeset 5038:8f157190075e

convert: add config option to turn off use of branch names
author Bryan O'Sullivan <bos@serpentine.com>
date Tue, 31 Jul 2007 17:18:59 -0700
parents b2607267236d
children c87de77a7d9f
files hgext/convert/hg.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/convert/hg.py
+++ b/hgext/convert/hg.py
@@ -24,6 +24,7 @@ class mercurial_sink(converter_sink):
             raise NoRepo("could not open hg repo %s as sink" % path)
         self.lock = None
         self.wlock = None
+        self.branchnames = ui.configbool('convert', 'hg.usebranchnames', True)
 
     def before(self):
         self.lock = self.repo.lock()
@@ -76,7 +77,7 @@ class mercurial_sink(converter_sink):
 
         text = commit.desc
         extra = {}
-        if commit.branch:
+        if self.branchnames and commit.branch:
             extra['branch'] = commit.branch
         if commit.rev:
             extra['convert_revision'] = commit.rev