summaryrefslogtreecommitdiff
path: root/DistUpgrade/DistUpgradeCache.py
diff options
context:
space:
mode:
Diffstat (limited to 'DistUpgrade/DistUpgradeCache.py')
-rw-r--r--DistUpgrade/DistUpgradeCache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py
index 45d892c7..2836d297 100644
--- a/DistUpgrade/DistUpgradeCache.py
+++ b/DistUpgrade/DistUpgradeCache.py
@@ -5,7 +5,7 @@ import os
import re
import logging
from gettext import gettext as _
-from DistUpgradeConfigParser import DistUpgradeConfigParser
+from DistUpgradeConfigParser import DistUpgradeConfig
class MyCache(apt.Cache):
# init
@@ -14,7 +14,7 @@ class MyCache(apt.Cache):
self.to_install = []
self.to_remove = []
- self.config = DistUpgradeConfigParser()
+ self.config = DistUpgradeConfig()
# turn on debuging
apt_pkg.Config.Set("Debug::pkgProblemResolver","true")