##// END OF EJS Templates
convert/gnuarch: robustify cat-log retrieval...
Edouard Gomez -
r7580:8c5afb3c default
parent child Browse files
Show More
@@ -73,7 +73,9 b' class gnuarch_source(converter_source, c'
73 self.changes[rev] = self.gnuarch_rev(rev)
73 self.changes[rev] = self.gnuarch_rev(rev)
74
74
75 # Read author, date and summary
75 # Read author, date and summary
76 catlog = self.run0('cat-log', '-d', self.path, rev)
76 catlog, status = self.run('cat-log', '-d', self.path, rev)
77 if status:
78 catlog = self.run0('cat-archive-log', rev)
77 self._parsecatlog(catlog, rev)
79 self._parsecatlog(catlog, rev)
78
80
79 self.parents[rev] = child
81 self.parents[rev] = child
General Comments 0
You need to be logged in to leave comments. Login now