X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fconfig.py;h=1e9299f21bbd9e5e004741215e89771d20312b00;hb=9bf86e38837121c738aae1eb5e1dbdaf69656198;hp=dc90d49a5edd435aeb6a54fa2968310a5bb18912;hpb=03752f74fb17550b34678380321e2f37e64acb65;p=dak.git diff --git a/daklib/config.py b/daklib/config.py index dc90d49a..1e9299f2 100755 --- a/daklib/config.py +++ b/daklib/config.py @@ -65,27 +65,30 @@ class Config(object): def _readconf(self): apt_pkg.init() - self.Cnf = apt_pkg.newConfiguration() + self.Cnf = apt_pkg.Configuration() - apt_pkg.ReadConfigFileISC(self.Cnf, which_conf_file()) + apt_pkg.read_config_file_isc(self.Cnf, which_conf_file()) # Check whether our dak.conf was the real one or # just a pointer to our main one res = socket.gethostbyaddr(socket.gethostname()) conffile = self.Cnf.get("Config::" + res[0] + "::DakConfig") if conffile: - apt_pkg.ReadConfigFileISC(self.Cnf, conffile) + apt_pkg.read_config_file_isc(self.Cnf, conffile) # Rebind some functions # TODO: Clean this up self.get = self.Cnf.get - self.SubTree = self.Cnf.SubTree - self.ValueList = self.Cnf.ValueList - self.Find = self.Cnf.Find - self.FindB = self.Cnf.FindB + self.subtree = self.Cnf.subtree + self.value_list = self.Cnf.value_list + self.find = self.Cnf.find + self.find_b = self.Cnf.find_b def has_key(self, name): - return self.Cnf.has_key(name) + return name in self.Cnf + + def __contains__(self, name): + return name in self.Cnf def __getitem__(self, name): return self.Cnf[name]