diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-08-01 01:11:41 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-08-01 01:11:41 -0700 |
commit | 3282ac5c7b9ec7102a8ac6683c1647366cee0ba8 (patch) | |
tree | 867e763ac3d578fae96e5e232df3fc406313c23d | |
parent | f0b826bf4152984030410ff570751a9ad801f1eb (diff) | |
download | portage-3282ac5c7b9ec7102a8ac6683c1647366cee0ba8.tar.gz portage-3282ac5c7b9ec7102a8ac6683c1647366cee0ba8.tar.bz2 portage-3282ac5c7b9ec7102a8ac6683c1647366cee0ba8.zip |
Fix NameError for ConfigProtect.
-rwxr-xr-x | bin/dispatch-conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dispatch-conf b/bin/dispatch-conf index a7556a3a3..1e21a521b 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', ''))) |