Skip to content

Commit

Permalink
Merge pull request #1095 from hollyx3/fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo authored Dec 4, 2023
2 parents f85408b + 11a30a9 commit f2b025f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ pub fn print_install_verbose(config: &Config, actions: &Actions, devel: &HashSet
actions.iter_aur_pkgs().count(),
actions.iter_pkgbuilds().count(),
) {
(a, 0) => tr!("Aur ({})", a),
(a, c) => tr!("Pkgbuilds ({})", a + c),
(a, 0) => format!("Aur ({})", a),
(a, c) => format!("Pkgbuilds ({})", a + c),
};
let old = tr!("Old Version");
let new = tr!("New Version");
Expand Down

0 comments on commit f2b025f

Please sign in to comment.