~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: John Arbash Meinel
  • Date: 2010-08-30 21:19:55 UTC
  • mfrom: (5396.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5398.
  • Revision ID: john@arbash-meinel.com-20100830211955-g93k3c3u5kft8z02
Fix the python2.4 syntax error

Show diffs side-by-side

added added

removed removed

Lines of Context:
491
491
        return self.config_class(*self.config_args)
492
492
 
493
493
    def create_config(self, content):
494
 
        c = self.config_class.from_string(content, *self.config_args, save=True)
 
494
        kwargs = dict(save=True)
 
495
        c = self.config_class.from_string(content, *self.config_args, **kwargs)
495
496
        return c
496
497
 
497
498
    def test_simple_read_access(self):