summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-08-01 01:11:41 -0700
committerZac Medico <zmedico@gentoo.org>2010-08-01 01:11:41 -0700
commit3282ac5c7b9ec7102a8ac6683c1647366cee0ba8 (patch)
tree867e763ac3d578fae96e5e232df3fc406313c23d /bin
parentJust return boolean to indicate whether or not updates have been performed, (diff)
downloadportage-multirepo-3282ac5c7b9ec7102a8ac6683c1647366cee0ba8.tar.gz
portage-multirepo-3282ac5c7b9ec7102a8ac6683c1647366cee0ba8.tar.bz2
portage-multirepo-3282ac5c7b9ec7102a8ac6683c1647366cee0ba8.zip
Fix NameError for ConfigProtect.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/dispatch-conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dispatch-conf b/bin/dispatch-conf
index a7556a3a..1e21a521 100755
--- a/bin/dispatch-conf
+++ b/bin/dispatch-conf
@@ -113,7 +113,7 @@ class dispatch:
# config file freezing support
frozen_files = set(self.options.get("frozen-files", "").split())
auto_zapped = []
- protect_obj = ConfigProtect(
+ protect_obj = portage.util.ConfigProtect(
config_root, config_paths,
portage.util.shlex_split(
portage.settings.get('CONFIG_PROTECT_MASK', '')))