##// END OF EJS Templates
configitems: register the 'convert.p4.startrev' config
Boris Feld -
r34174:b1d94bc6 default
parent child Browse files
Show More
@@ -97,6 +97,9 b" configitem('convert', 'ignoreancestorche"
97 configitem('convert', 'localtimezone',
97 configitem('convert', 'localtimezone',
98 default=False,
98 default=False,
99 )
99 )
100 configitem('convert', 'p4.startrev',
101 default=0,
102 )
100
103
101 # Commands definition was moved elsewhere to ease demandload job.
104 # Commands definition was moved elsewhere to ease demandload job.
102
105
@@ -138,7 +138,7 b' class p4_source(common.converter_source)'
138 vieworder.sort(key=len, reverse=True)
138 vieworder.sort(key=len, reverse=True)
139
139
140 # handle revision limiting
140 # handle revision limiting
141 startrev = self.ui.config('convert', 'p4.startrev', default=0)
141 startrev = self.ui.config('convert', 'p4.startrev')
142
142
143 # now read the full changelists to get the list of file revisions
143 # now read the full changelists to get the list of file revisions
144 ui.status(_('collecting p4 changelists\n'))
144 ui.status(_('collecting p4 changelists\n'))
General Comments 0
You need to be logged in to leave comments. Login now