##// END OF EJS Templates
obsstore: record data as floating point in fm0 format...
Pierre-Yves David -
r23002:2920a96f default
parent child Browse files
Show More
@@ -202,7 +202,8 b' def _fm0encodeonemarker(marker):'
202 202 if flags & usingsha256:
203 203 raise util.Abort(_('cannot handle sha256 with old obsstore format'))
204 204 metadata = dict(metadata)
205 metadata['date'] = '%d %i' % date
205 time, tz = date
206 metadata['date'] = '%r %i' % (time, tz)
206 207 if parents is not None:
207 208 if not parents:
208 209 # mark that we explicitly recorded no parents
General Comments 0
You need to be logged in to leave comments. Login now