fixed fmt::Display impl for GatewayNetworkRequesterDetails (#4033)

This commit is contained in:
Jędrzej Stuczyński
2023-10-24 09:57:53 +01:00
committed by GitHub
parent d80333c819
commit e2d816defb
+1 -1
View File
@@ -143,6 +143,6 @@ impl fmt::Display for GatewayNetworkRequesterDetails {
writeln!(f, "\tsends statistics: {}", self.enabled_statistics)?;
writeln!(f, "\tallow list path: {}", self.allow_list_path)?;
writeln!(f, "\tunknown list path: {}", self.allow_list_path)
writeln!(f, "\tunknown list path: {}", self.unknown_list_path)
}
}