File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ impl ProvenanceTable {
4545 "empty provenance record" . to_owned ( ) ,
4646 ) ) ;
4747 }
48- let timestamp = humantime :: format_rfc3339 ( std :: time :: SystemTime :: now ( ) ) . to_string ( ) ;
48+ let timestamp = chrono :: Utc :: now ( ) . to_string ( ) ;
4949 let rv = unsafe {
5050 tsk_provenance_table_add_row (
5151 self . as_mut ( ) ,
Original file line number Diff line number Diff line change @@ -464,7 +464,7 @@ impl TreeSequence {
464464 expected : "provenance record" . to_string ( ) ,
465465 } ) ;
466466 }
467- let timestamp = humantime :: format_rfc3339 ( std :: time :: SystemTime :: now ( ) ) . to_string ( ) ;
467+ let timestamp = chrono :: Utc :: now ( ) . to_string ( ) ;
468468 let rv = unsafe {
469469 ll_bindings:: tsk_provenance_table_add_row (
470470 & mut ( * self . inner . as_ref ( ) . tables ) . provenances ,
You can’t perform that action at this time.
0 commit comments