* viewcvs/lib/vclib/bincvs/__init__.py

(get_logs): Copy the input 'files' array so we aren't deleting data
    from the passed-in thing.  Caller might want to keep using that
    stuff, ya know?


git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@735 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/tags/1.0.0-rc1
cmpilato 2003-10-21 18:58:32 +00:00
parent ff2cf94151
commit e367c87dfe
1 changed files with 1 additions and 0 deletions

View File

@ -352,6 +352,7 @@ def get_logs(rcs_paths, full_name, files, view_tag):
if len(files) == 0:
return { }, { }
files = files[:]
fileinfo = { }
alltags = { # all the tags seen in the files of this dir
'MAIN' : '1',