Skip to content

Commit 4ed2d2f

Browse files
committed
Fix since_date format
1 parent 207b79d commit 4ed2d2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/repo_access.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ impl RustRepositoryAccessor for AccessViaGithub {
6767

6868
eprintln!(
6969
"fetching (via remote github) commits from max({}, {}) to {}",
70-
start_sha, since_date, end_sha
70+
start_sha,
71+
since_date.format(crate::YYYY_MM_DD),
72+
end_sha
7173
);
7274

7375
let query = github::CommitsQuery {

0 commit comments

Comments
 (0)