~mvo/update-manager/not-automatic

« back to all changes in this revision

Viewing changes to DistUpgrade/DistUpgradeConfigParser.py

  • Committer: Michael Vogt
  • Date: 2006-10-05 14:36:09 UTC
  • mfrom: (358.1.118 main)
  • mto: This revision was merged to the branch mainline in revision 376.
  • Revision ID: michael.vogt@ubuntu.com-20061005143609-d3d486671aba63d3
* merged from mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    def __init__(self, datadir, name="DistUpgrade.cfg"):
6
6
        ConfigParser.__init__(self)
7
7
        self.datadir=datadir
8
 
        self.read(datadir+"/"+name)
 
8
        self.read([datadir+"/"+name])
9
9
    def getlist(self, section, option):
10
10
        try:
11
11
            tmp = self.get(section, option)