Actually commit correct file this time...

This commit is contained in:
Vicki Pfau 2024-06-13 14:37:55 -07:00
parent 6285530a4a
commit 0c05b760ed
2 changed files with 4 additions and 3 deletions

View file

@ -114,8 +114,10 @@ async fn read_config_directory<P: AsRef<Path> + Sync + Send>(
);
return Ok(builder);
}
error!("Error reading config fragment directory {}: {e}",
path.as_ref().to_string_lossy());
error!(
"Error reading config fragment directory {}: {e}",
path.as_ref().to_string_lossy()
);
return Err(e.into());
}
};

View file

@ -27,7 +27,6 @@ pub mod daemon;
pub mod hardware;
pub mod power;
pub mod proxy;
pub mod wakehook;
pub mod wifi;
#[cfg(test)]