commit 61c05d1495dcb8396f9352746161a6cc588eaa21 Author: David Goulet dgoulet@torproject.org Date: Thu Apr 8 10:46:48 2021 -0400
One too many commas
Signed-off-by: David Goulet dgoulet@torproject.org --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs index f4d791c..ad9e165 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,7 +44,7 @@ fn write_file_tor_git(writer: &mut BufWriter<&File>, relay: &tor_netdir::Relay) )?; writeln!( writer, - "" id={}",", + "" id={}"", relay.rsa_id().to_string().to_uppercase().replace("$", "") )?; writeln!(writer, "" ed={}",", relay.md().ed25519_id().to_string())?;
tor-commits@lists.torproject.org