Bastien Sevajol 9 years ago
parent
commit
927937af85
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tracim/tracim/model/data.py

+ 1 - 1
tracim/tracim/model/data.py View File

@@ -519,7 +519,7 @@ class ContentRevisionRO(DeclarativeBase):
519 519
     """ List of column copied when make a new revision from another """
520 520
     _cloned_columns = (
521 521
         'content_id', 'created', 'description', 'file_content', 'file_mimetype', 'file_name', 'is_archived',
522
-        'is_deleted', 'label', 'node', 'owner' 'owner_id', 'parent', 'parent_id', 'properties', 'revision_type',
522
+        'is_deleted', 'label', 'node', 'owner', 'owner_id', 'parent', 'parent_id', 'properties', 'revision_type',
523 523
         'status', 'type', 'updated', 'workspace', 'workspace_id',
524 524
     )
525 525