Show More
@@ -14,6 +14,7 b' class gnuarch_source(converter_source, c' | |||||
14 | self.summary = '' |
|
14 | self.summary = '' | |
15 | self.date = None |
|
15 | self.date = None | |
16 | self.author = '' |
|
16 | self.author = '' | |
|
17 | self.continuationof = None | |||
17 | self.add_files = [] |
|
18 | self.add_files = [] | |
18 | self.mod_files = [] |
|
19 | self.mod_files = [] | |
19 | self.del_files = [] |
|
20 | self.del_files = [] | |
@@ -239,6 +240,8 b' class gnuarch_source(converter_source, c' | |||||
239 | '%Y-%m-%d %H:%M:%S')) |
|
240 | '%Y-%m-%d %H:%M:%S')) | |
240 | self.changes[rev].author = catlog['Creator'] |
|
241 | self.changes[rev].author = catlog['Creator'] | |
241 | self.changes[rev].summary = catlog['Summary'] |
|
242 | self.changes[rev].summary = catlog['Summary'] | |
|
243 | if catlog.has_key('Continuation-of'): | |||
|
244 | self.changes[rev].continuationof = catlog['Continuation-of'] | |||
242 | except Exception, err: |
|
245 | except Exception, err: | |
243 | raise util.Abort(_('could not parse cat-log of %s') % rev) |
|
246 | raise util.Abort(_('could not parse cat-log of %s') % rev) | |
244 |
|
247 |
General Comments 0
You need to be logged in to leave comments.
Login now