fix for bug #509705, Directory view of branch skips files

based on patch from Steve Lamm (slamm)

* lib/vclib/bincvs/__init__.py (parse_log_entry): fixed to work with
  versions of RCS that add extra dashed separator lines


git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@691 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/tags/1.0.0-rc1
rey4 2003-07-24 21:53:20 +00:00
parent 5d4c447dd4
commit 25bb91db25
1 changed files with 4 additions and 0 deletions

View File

@ -154,6 +154,10 @@ def parse_log_entry(fp):
line = fp.readline()
if not line:
return None, _EOF_LOG
if line == LOG_END_MARKER:
# Needed because some versions of RCS precede LOG_END_MARKER
# with ENTRY_END_MARKER
return None, _EOF_FILE
if line[:8] == 'revision':
match = _re_rev.match(line)
if not match: