Make sure log message does not include additional information.
[cvs2svn.git] / cvs2svn_rcsparse / __init__.py
blob829c1170c8c194167da2285c256c7dcda63c54d8
1 # -*-python-*-
3 # Copyright (C) 1999-2006 The ViewCVS Group. All Rights Reserved.
5 # By using this file, you agree to the terms and conditions set forth in
6 # the LICENSE.html file which can be found at the top level of the ViewVC
7 # distribution or at http://viewvc.org/license-1.html.
9 # For more information, visit http://viewvc.org/
11 # -----------------------------------------------------------------------
13 """This package provides parsing tools for RCS files."""
15 from common import *
17 try:
18 from tparse import parse
19 except ImportError:
20 try:
21 from texttools import Parser
22 except ImportError:
23 from default import Parser
25 def parse(file, sink):
26 return Parser().parse(file, sink)