Skip to content

Commit f34bc25

Browse files
committed
some internal updates
1 parent 14eff6f commit f34bc25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sys/provenance_table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(),

src/trees/treeseq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)