Skip to content

Commit 4e7a16c

Browse files
committed
Fix ETA display after regression
1 parent eca5013 commit 4e7a16c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/download_tracker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ impl fmt::Display for Eta {
226226
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
227227
match self.0 {
228228
Duration::ZERO => Ok(()),
229-
_ => write!(f, "{}", self.0.display()),
229+
_ => write!(f, " ETA: {}", self.0.display()),
230230
}
231231
}
232232
}

0 commit comments

Comments
 (0)