From 6ec042a9aba2aef6f90cba17d9d4b06bcd3f2700 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Wed, 8 Oct 2008 14:45:57 -1000 Subject: [PATCH] Do not print out locale names. --- src/pylorax/instroot.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pylorax/instroot.py b/src/pylorax/instroot.py index c0a1363c..8bb4034c 100644 --- a/src/pylorax/instroot.py +++ b/src/pylorax/instroot.py @@ -296,7 +296,6 @@ def scrubInstRoot(destdir=None, libdir='lib', arch=None): locale = fields[3].split('.')[0] if os.path.isdir(os.path.join(localepath, locale)): - print " %s" % (locale,) locales.add(locale) for locale in os.listdir(os.path.join(destdir, 'usr', 'share', 'locale')): @@ -306,7 +305,6 @@ def scrubInstRoot(destdir=None, libdir='lib', arch=None): locales_to_remove = list(all_locales.difference(locales)) for locale in locales_to_remove: rmpath = os.path.join(destdir, 'usr', 'share', 'locale', locale) - print " %s" % (locale,) shutil.rmtree(rmpath, ignore_errors=True) # fix up some links for man page related stuff