Skip to content

Commit

Permalink
Five spaces instead of just one
Browse files Browse the repository at this point in the history
  • Loading branch information
Talon1024 committed May 9, 2022
1 parent 55cdf3d commit 280f7b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,13 @@ impl AddonManager {
let mut files = String::new();
for file in &addon.required {
files.push_str(file);
files.push(' ');
files.push_str(" ");
}
if let Some(optional) = &addon.optional {
for file in optional {
if File::open(file).is_ok() {
files.push_str(file);
files.push(' ');
files.push_str(" ");
}
}
}
Expand Down

0 comments on commit 280f7b3

Please sign in to comment.