Mercurial > hgsubversion
comparison svnwrap/svn_swig_wrapper.py @ 263:d978192f0d63
Clean up TODOs that are no longer relevant.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 13 Apr 2009 21:19:13 -0500 |
parents | e8b3ca865f93 |
children | a5f20358f737 |
comparison
equal
deleted
inserted
replaced
262:3b3627611468 | 263:d978192f0d63 |
---|---|
110 class Revision(object): | 110 class Revision(object): |
111 """Wrapper for a Subversion revision. | 111 """Wrapper for a Subversion revision. |
112 """ | 112 """ |
113 def __init__(self, revnum, author, message, date, paths, strip_path=''): | 113 def __init__(self, revnum, author, message, date, paths, strip_path=''): |
114 self.revnum, self.author, self.message = revnum, author, message | 114 self.revnum, self.author, self.message = revnum, author, message |
115 # TODO parse this into a datetime | |
116 self.date = date | 115 self.date = date |
117 self.paths = {} | 116 self.paths = {} |
118 if paths: | 117 if paths: |
119 for p in paths: | 118 for p in paths: |
120 self.paths[p[len(strip_path):]] = paths[p] | 119 self.paths[p[len(strip_path):]] = paths[p] |