* lib/vclib/svn/svn_repos.py

(LocalSubversionRepository.dirlogs): Oops!  Fix a buglet caused by
    looking at the wrong revision-holding variable.
 

git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@1791 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/merged-file-views
cmpilato 2008-02-13 17:39:12 +00:00
parent 02f7f5b203
commit 10fa46063c
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ class LocalSubversionRepository(vclib.Repository):
path = self._getpath(entry_path_parts)
entry_rev = _get_last_history_rev(fsroot, path)
date, author, msg, changes = self.revinfo(entry_rev)
entry.rev = str(rev)
entry.rev = str(entry_rev)
entry.date = date
entry.author = author
entry.log = msg