Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/base/
Date: Sat, 01 Mar 2014 18:51:58
Message-Id: 1393695377.c86002b3a49b109cd8424dcba85e8133711c47d4.dol-sen@gentoo
1 commit: c86002b3a49b109cd8424dcba85e8133711c47d4
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 1 16:58:24 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Sat Mar 1 17:36:17 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=c86002b3
7
8 catalyst/base/clearbase.py: Fix remove parameter mistakes.
9
10 fixes commit: 02b3cb7a8d5c9d8d21105feda6868080416721c1
11 Add remove_chroot and remove_autoresume functions.
12 Brian Dolbec <dolsen <AT> gentoo.org> (Tue 31 Dec 2013 01:04:29 AM PST)
13
14 ---
15 catalyst/base/clearbase.py | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18 diff --git a/catalyst/base/clearbase.py b/catalyst/base/clearbase.py
19 index a9f1d22..b2c1a11 100644
20 --- a/catalyst/base/clearbase.py
21 +++ b/catalyst/base/clearbase.py
22 @@ -55,10 +55,10 @@ class ClearBase(object):
23 if any(k in self.settings["options"] for k in ("purge",
24 "purgeonly", "purgetmponly")):
25 print "purge(); clearing autoresume ..."
26 - self.clear_autoresume(remove)
27 + self.clear_autoresume()
28
29 print "purge(); clearing chroot ..."
30 - self.clear_chroot(remove)
31 + self.clear_chroot()
32
33 if "purgetmponly" not in self.settings["options"]:
34 print "purge(); clearing package cache ..."