diff piecrust/baking/records.py @ 721:234d0c7c02cf

bake: Add the timestamp of the page to each record entry.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 29 May 2016 20:15:30 -0700
parents ab5c6a8ae90a
children 9a92e2804562
line wrap: on
line diff
--- a/piecrust/baking/records.py	Sat May 28 15:43:45 2016 -0700
+++ b/piecrust/baking/records.py	Sun May 29 20:15:30 2016 -0700
@@ -16,7 +16,7 @@
 
 
 class BakeRecord(Record):
-    RECORD_VERSION = 18
+    RECORD_VERSION = 19
 
     def __init__(self):
         super(BakeRecord, self).__init__()
@@ -78,6 +78,7 @@
         self.extra_key = extra_key
         self.flags = self.FLAG_NONE
         self.config = None
+        self.timestamp = None
         self.errors = []
         self.subs = []