~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/rules.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-11-02 23:51:46 UTC
  • mfrom: (5519.2.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20101102235146-sw9vxf9n28nc1cuj
(gz) Use ConfigObj encoding parameter rather than indirecting through
 options dict (Max Bowsher)

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
        :param inifile: the name of the file or a sequence of lines.
76
76
        """
77
 
        options = {'encoding': 'utf-8'}
78
 
        self._cfg = configobj.ConfigObj(inifile, options=options)
 
77
        self._cfg = configobj.ConfigObj(inifile, encoding='utf-8')
79
78
        sections = self._cfg.keys()
80
79
        patterns = []
81
80
        self.pattern_to_section = {}