Show More
@@ -85,6 +85,9 b" configitem('convert', 'hg.sourcename'," | |||
|
85 | 85 | configitem('convert', 'hg.startrev', |
|
86 | 86 | default=None, |
|
87 | 87 | ) |
|
88 | configitem('convert', 'hg.tagsbranch', | |
|
89 | default='default', | |
|
90 | ) | |
|
88 | 91 | |
|
89 | 92 | # Commands definition was moved elsewhere to ease demandload job. |
|
90 | 93 |
@@ -49,7 +49,7 b' class mercurial_sink(common.converter_si' | |||
|
49 | 49 | common.converter_sink.__init__(self, ui, path) |
|
50 | 50 | self.branchnames = ui.configbool('convert', 'hg.usebranchnames', True) |
|
51 | 51 | self.clonebranches = ui.configbool('convert', 'hg.clonebranches') |
|
52 |
self.tagsbranch = ui.config('convert', 'hg.tagsbranch' |
|
|
52 | self.tagsbranch = ui.config('convert', 'hg.tagsbranch') | |
|
53 | 53 | self.lastbranch = None |
|
54 | 54 | if os.path.isdir(path) and len(os.listdir(path)) > 0: |
|
55 | 55 | try: |
General Comments 0
You need to be logged in to leave comments.
Login now