diff --git a/update/update.py b/update/update.py index 966e907..e7915c7 100644 --- a/update/update.py +++ b/update/update.py @@ -285,8 +285,8 @@ class Update: self.endTask() _print = self.color_print if max_num > 1: - one = _print.foreground(Colors.YELLOW).bold("{0}", num) - two = _print.foreground(Colors.YELLOW).bold("{0}", max_num) + one = _print.bold("{0}", num) + two = _print.bold("{0}", max_num) part = _(" ({current} of {maximum})").format(current=one, maximum=two) else: @@ -320,8 +320,8 @@ class Update: self.endTask() _print = self.color_print if max_num > 1: - one = _print.foreground(Colors.YELLOW).bold("{0}", num) - two = _print.foreground(Colors.YELLOW).bold("{0}", max_num) + one = _print.bold("{0}", num) + two = _print.bold("{0}", max_num) part = _(" ({current} of {maximum})").format(current=one, maximum=two) else: diff --git a/update/variables/update.py b/update/variables/update.py index 0276858..1c22e5c 100644 --- a/update/variables/update.py +++ b/update/variables/update.py @@ -401,7 +401,7 @@ class VariableClUpdateSyncOnlySet(Variable): """ type = "bool" value = "off" - opt = ["-s","--sync-only"] + opt = ["-s", "--sync"] def init(self): self.label = _("Only synchronize repositories")