From 3c1d9ebf3767ffa1c1f0d5aa1a286ea83b181dc7 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Sun, 5 Oct 2008 15:34:27 -1000 Subject: [PATCH] ignore_error -> ignore_errors --- src/pylorax/instroot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/instroot.py b/src/pylorax/instroot.py index d400284f..3b16dc00 100644 --- a/src/pylorax/instroot.py +++ b/src/pylorax/instroot.py @@ -230,7 +230,7 @@ def scrubInstRoot(destdir=None): for theme in os.listdir(theme_path): if theme != gtk_theme_name: theme = os.path.join(theme_path, theme) - shutil.rmtree(theme, ignore_error=True) + shutil.rmtree(theme, ignore_errors=True) icon_path = os.path.join(destdir, 'usr', 'share', 'icons') if os.path.isdir(icon_path):