diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-02-02 17:06:07 +0000 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-02-02 17:06:07 +0000 |
| commit | f593c02a4051313dd0044888a26d7ab3f4ba1133 (patch) | |
| tree | 58897c0bf74e68970643bff5eb85a47b5e4e4470 /DistUpgrade/DistUpgradeControler.py | |
| parent | cbcb6a374bb92bd38e3dac13d5ab78c8fd2a4690 (diff) | |
| download | python-apt-f593c02a4051313dd0044888a26d7ab3f4ba1133.tar.gz | |
* make DistUpgadeConfigParser -> DistUpgradeConfig
Diffstat (limited to 'DistUpgrade/DistUpgradeControler.py')
| -rw-r--r-- | DistUpgrade/DistUpgradeControler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 7ee79cac..3a43d517 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -28,7 +28,7 @@ import subprocess import logging import re import statvfs -from DistUpgradeConfigParser import DistUpgradeConfigParser +from DistUpgradeConfigParser import DistUpgradeConfig from SoftwareProperties.aptsources import SourcesList, SourceEntry from gettext import gettext as _ @@ -42,7 +42,7 @@ class DistUpgradeControler(object): self._view.updateStatus(_("Reading cache")) self.cache = None - self.config = DistUpgradeConfigParser() + self.config = DistUpgradeConfig() self.sources_backup_ext = "."+self.config.get("Files","BackupExt") # some constants here |
