Inline method SVNCommitItem.has_keywords().
[cvs2svn.git] / cvs2svn_lib / svn_commit_item.py
blob33820c0cd3f65f024cda7e649a79cc8f82101862
1 # (Be in -*- python -*- mode.)
3 # ====================================================================
4 # Copyright (c) 2000-2008 CollabNet. All rights reserved.
6 # This software is licensed as described in the file COPYING, which
7 # you should have received as part of this distribution. The terms
8 # are also available at http://subversion.tigris.org/license-1.html.
9 # If newer versions of this license are posted there, you may use a
10 # newer version instead, at your option.
12 # This software consists of voluntary contributions made by many
13 # individuals. For exact contribution history, see the revision
14 # history and logs, available at http://cvs2svn.tigris.org/.
15 # ====================================================================
17 """This module contains class SVNCommitItem."""
20 from cvs2svn_lib.context import Ctx
23 class SVNCommitItem:
24 """A wrapper class for CVSRevision objects with no real purpose."""
26 def __init__(self, cvs_rev):
27 """Initialize instance."""
29 self.cvs_rev = cvs_rev