##// END OF EJS Templates
configitems: register the 'convert.svn.debugsvnlog' config
Boris Feld -
r34176:b8887872 default
parent child Browse files
Show More
@@ -103,6 +103,9 b" configitem('convert', 'p4.startrev',"
103 103 configitem('convert', 'skiptags',
104 104 default=False,
105 105 )
106 configitem('convert', 'svn.debugsvnlog',
107 default=True,
108 )
106 109
107 110 # Commands definition was moved elsewhere to ease demandload job.
108 111
@@ -1059,7 +1059,7 b' class svn_source(converter_source):'
1059 1059 args = [self.baseurl, relpaths, start, end, limit,
1060 1060 discover_changed_paths, strict_node_history]
1061 1061 # developer config: convert.svn.debugsvnlog
1062 if not self.ui.configbool('convert', 'svn.debugsvnlog', True):
1062 if not self.ui.configbool('convert', 'svn.debugsvnlog'):
1063 1063 return directlogstream(*args)
1064 1064 arg = encodeargs(args)
1065 1065 hgexe = util.hgexecutable()
General Comments 0
You need to be logged in to leave comments. Login now