[Yum-devel] [PATCH 2/2] Cleanup whitespace for repolist -v
James Antill
james at and.org
Tue Aug 11 17:39:31 UTC 2009
---
yumcommands.py | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/yumcommands.py b/yumcommands.py
index d6845e8..e5520d6 100644
--- a/yumcommands.py
+++ b/yumcommands.py
@@ -824,15 +824,15 @@ class RepoListCommand(YumCommand):
md = repo.repoXML
else:
md = None
- out = [base.fmtKeyValFill(_("Repo-id : "), repo),
- base.fmtKeyValFill(_("Repo-name : "), repo.name),
- base.fmtKeyValFill(_("Repo-status : "), ui_enabled)]
+ out = [base.fmtKeyValFill(_("Repo-id : "), repo),
+ base.fmtKeyValFill(_("Repo-name : "), repo.name),
+ base.fmtKeyValFill(_("Repo-status : "), ui_enabled)]
if md and md.revision is not None:
out += [base.fmtKeyValFill(_("Repo-revision: "),
md.revision)]
if md and md.tags['content']:
tags = md.tags['content']
- out += [base.fmtKeyValFill(_("Repo-tags : "),
+ out += [base.fmtKeyValFill(_("Repo-tags : "),
", ".join(sorted(tags)))]
if md and md.tags['distro']:
@@ -843,17 +843,17 @@ class RepoListCommand(YumCommand):
", ".join(sorted(tags))))]
if md:
- out += [base.fmtKeyValFill(_("Repo-updated: "),
+ out += [base.fmtKeyValFill(_("Repo-updated : "),
time.ctime(md.timestamp)),
- base.fmtKeyValFill(_("Repo-pkgs : "), ui_num),
- base.fmtKeyValFill(_("Repo-size : "),ui_size)]
+ base.fmtKeyValFill(_("Repo-pkgs : "),ui_num),
+ base.fmtKeyValFill(_("Repo-size : "),ui_size)]
if hasattr(repo, '_orig_baseurl'):
baseurls = repo._orig_baseurl
else:
baseurls = repo.baseurl
if baseurls:
- out += [base.fmtKeyValFill(_("Repo-baseurl: "),
+ out += [base.fmtKeyValFill(_("Repo-baseurl : "),
", ".join(baseurls))]
if enabled:
@@ -868,7 +868,7 @@ class RepoListCommand(YumCommand):
out += [base.fmtKeyValFill(_(" Updated : "),
time.ctime(ts))]
elif repo.mirrorlist:
- out += [base.fmtKeyValFill(_("Repo-mirrors: "),
+ out += [base.fmtKeyValFill(_("Repo-mirrors : "),
repo.mirrorlist)]
if not os.path.exists(repo.metadata_cookie):
@@ -894,14 +894,14 @@ class RepoListCommand(YumCommand):
num = locale.format("%d", num, True)
num = num2time[cnum] % (num, last)
break
- out += [base.fmtKeyValFill(_("Repo-expire : "), num)]
+ out += [base.fmtKeyValFill(_("Repo-expire : "), num)]
if repo.exclude:
- out += [base.fmtKeyValFill(_("Repo-exclude: "),
+ out += [base.fmtKeyValFill(_("Repo-exclude : "),
", ".join(repo.exclude))]
if repo.includepkgs:
- out += [base.fmtKeyValFill(_("Repo-include: "),
+ out += [base.fmtKeyValFill(_("Repo-include : "),
", ".join(repo.includepkgs))]
base.verbose_logger.log(logginglevels.DEBUG_3,
--
1.6.2.5
More information about the Yum-devel
mailing list