````rust write!( f, "{}", format!( "Cargo cache '{}/':\n\n", &self.cargo_cache_paths.cargo_home.display() ) )?; ```` should just be ````rust write!( f, "Cargo cache '{}/':\n\n", &self.cargo_cache_paths.cargo_home.display() )?; ```` but clippy doesn't warn apparently. ````clippy 0.0.212 (cafef7b 2018-09-06)````