Ahhh, the joys of using an interpreted language...

* lib/vclib/bincvs/__init__.py
  (BinCVSRepository.openfile):
    Fix errors in a raise statement


git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@775 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/tags/1.0.0-rc1
rey4 2003-12-10 07:48:11 +00:00
parent 4ddb87c838
commit 99a59b5032
1 changed files with 2 additions and 2 deletions

View File

@ -614,10 +614,10 @@ class BinCVSRepository(vclib.Repository):
match = _re_co_filename.match(line)
if not match:
raise debug.ViewcvsException(
raise vclib.Error(
'First line of co output is not the filename.<br>'
'Line was: %s<br>'
'fname="%s". url="%s"' % (line, filename, where))
'fname="%s"' % (line, full_name))
filename = match.group(1)
line = fp.readline()