Show More
@@ -263,7 +263,7 class svn_source(converter_source): | |||
|
263 | 263 | rev = optrev(self.last_changed) |
|
264 | 264 | oldmodule = '' |
|
265 | 265 | trunk = getcfgpath('trunk', rev) |
|
266 | tags = getcfgpath('tags', rev) | |
|
266 | self.tags = getcfgpath('tags', rev) | |
|
267 | 267 | branches = getcfgpath('branches', rev) |
|
268 | 268 | |
|
269 | 269 | # If the project has a trunk or branches, we will extract heads |
@@ -278,7 +278,8 class svn_source(converter_source): | |||
|
278 | 278 | |
|
279 | 279 | # First head in the list is the module's head |
|
280 | 280 | self.heads = [self.head] |
|
281 | self.tags = '%s/%s' % (oldmodule , (tags or 'tags')) | |
|
281 | if self.tags is not None: | |
|
282 | self.tags = '%s/%s' % (oldmodule , (self.tags or 'tags')) | |
|
282 | 283 | |
|
283 | 284 | # Check if branches bring a few more heads to the list |
|
284 | 285 | if branches: |
General Comments 0
You need to be logged in to leave comments.
Login now