Re-update to rcsparse r2495 to get all the goodness of the new update script.
[cvs2svn.git] / cvs2svn_lib / metadata.py
blob6cd1337d745ffcbd536f2c7bd55b06a11fe0fa4d
1 # (Be in -*- python -*- mode.)
3 # ====================================================================
4 # Copyright (c) 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 """Represent CVSRevision metadata."""
20 class Metadata(object):
21 def __init__(self, id, author, log_msg):
22 self.id = id
23 self.author = author
24 self.log_msg = log_msg