From a1896bffb665335dee8364bb91f14d11e2eeabd9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 14 Jun 2022 13:00:14 +0200 Subject: [PATCH] remove outdated comment Signed-off-by: Wolfgang Bumiller --- src/server/email_notifications.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/server/email_notifications.rs b/src/server/email_notifications.rs index 38d4fb47..44a2ecf1 100644 --- a/src/server/email_notifications.rs +++ b/src/server/email_notifications.rs @@ -522,7 +522,6 @@ pub fn send_updates_available(updates: &[&APTUpdateInfo]) -> Result<(), Error> { } /// send email on certificate renewal failure. -/// `notify` currently only accepts `Notify::Error`. pub fn send_certificate_renewal_mail(result: &Result<(), Error>) -> Result<(), Error> { let error: String = match result { Err(e) => e.to_string().into(),