Changeset 96 in tailor
- Timestamp:
- 07/16/04 18:24:19 (9 years ago)
- Hash name:
- 20040716162419-97f81-571a12bda5c10be1028e9b1f0370f8d1b094b921
- File:
-
- 1 edited
-
vcpx/cvs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvs.py
r95 r96 133 133 # NB: the _getUpstreamChangesets() below depends on this format 134 134 135 return str(timestamp)135 return "%s by %s" % (timestamp, author) 136 136 137 137 def __collect(self, timestamp, author, changelog, entry, revision): … … 280 280 else: 281 281 # Assume this is from __getGlobalRevision() 282 since = sincerev283 y,m,d,hh,mm,ss,d1,d2,d3 = strptime(since rev, "%Y-%m-%d %H:%M:%S")282 since,author = sincerev.split(' by ') 283 y,m,d,hh,mm,ss,d1,d2,d3 = strptime(since, "%Y-%m-%d %H:%M:%S") 284 284 sincedate = datetime(y,m,d,hh,mm,ss) 285 285
Note: See TracChangeset
for help on using the changeset viewer.
