|
@@ -538,7 +538,6 @@ class ContentRevisionRO(DeclarativeBase):
|
538
|
538
|
column_value = getattr(revision, column_name)
|
539
|
539
|
setattr(new_rev, column_name, column_value)
|
540
|
540
|
|
541
|
|
- new_rev.created = datetime.now()
|
542
|
541
|
new_rev.updated = datetime.now()
|
543
|
542
|
|
544
|
543
|
return new_rev
|
|
@@ -1187,7 +1186,7 @@ class VirtualEvent(object):
|
1187
|
1186
|
action_description = ActionDescription(revision.revision_type)
|
1188
|
1187
|
|
1189
|
1188
|
return VirtualEvent(id=revision.revision_id,
|
1190
|
|
- created=revision.created,
|
|
1189
|
+ created=revision.updated,
|
1191
|
1190
|
owner=revision.owner,
|
1192
|
1191
|
type=action_description,
|
1193
|
1192
|
label=action_description.label,
|