Show More
@@ -217,11 +217,9 b' class gnuarch_source(converter_source, c' | |||
|
217 | 217 | return changes, copies |
|
218 | 218 | |
|
219 | 219 | def _parsecatlog(self, data, rev): |
|
220 | readingsummary = False | |
|
220 | 221 | for l in data: |
|
221 | 222 | l = l.strip() |
|
222 | if l.startswith('Summary:'): | |
|
223 | self.changes[rev].summary = l[len('Summary: '):] | |
|
224 | ||
|
225 | 223 | if l.startswith('Standard-date:'): |
|
226 | 224 | date = l[len('Standard-date: '):] |
|
227 | 225 | strdate = util.strdate(date, '%Y-%m-%d %H:%M:%S') |
@@ -230,6 +228,12 b' class gnuarch_source(converter_source, c' | |||
|
230 | 228 | if l.startswith('Creator:'): |
|
231 | 229 | self.changes[rev].author = l[len('Creator: '):] |
|
232 | 230 | |
|
231 | if not readingsummary and l.startswith('Summary:'): | |
|
232 | readingsummary = True | |
|
233 | self.changes[rev].summary = l[len('Summary: '):] | |
|
234 | elif not l.startswith('Keywords:'): | |
|
235 | self.changes[rev].summary += '\n%s' % l | |
|
236 | ||
|
233 | 237 | def _parsedelta(self, data, rev): |
|
234 | 238 | for l in data: |
|
235 | 239 | l = l.strip() |
General Comments 0
You need to be logged in to leave comments.
Login now