fix display bug

This commit is contained in:
Alex 2021-12-08 12:27:47 +01:00
parent 090e58ca7c
commit 35b46e64e7
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ impl std::fmt::Display for ProxyEntry {
self.priority
)?;
if !self.add_headers.is_empty() {
write!(f, "+Headers: {:?}", self.add_headers)?;
write!(f, " +Headers: {:?}", self.add_headers)?;
}
Ok(())
}