From 99a59b50323ac539d93cb3270e72909144861b83 Mon Sep 17 00:00:00 2001 From: rey4 Date: Wed, 10 Dec 2003 07:48:11 +0000 Subject: [PATCH] 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 --- lib/vclib/bincvs/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vclib/bincvs/__init__.py b/lib/vclib/bincvs/__init__.py index 89bf966f..204d9d86 100644 --- a/lib/vclib/bincvs/__init__.py +++ b/lib/vclib/bincvs/__init__.py @@ -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.
' 'Line was: %s
' - 'fname="%s". url="%s"' % (line, filename, where)) + 'fname="%s"' % (line, full_name)) filename = match.group(1) line = fp.readline()