Rev 5400: Fix the python2.4 syntax error in http://bzr.arbash-meinel.com/branches/bzr/jam-integration

John Arbash Meinel john at arbash-meinel.com
Mon Aug 30 22:20:04 BST 2010


At http://bzr.arbash-meinel.com/branches/bzr/jam-integration

------------------------------------------------------------
revno: 5400 [merge]
revision-id: john at arbash-meinel.com-20100830211955-g93k3c3u5kft8z02
parent: john at arbash-meinel.com-20100830191835-lcccwg4jaj2gg4rv
parent: v.ladeuil+lp at free.fr-20100830082645-77bpkmmeba0vy8xh
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: jam-integration
timestamp: Mon 2010-08-30 16:19:55 -0500
message:
  Fix the python2.4 syntax error
modified:
  bzrlib/tests/test_config.py    testconfig.py-20051011041908-742d0c15d8d8c8eb
-------------- next part --------------
=== modified file 'bzrlib/tests/test_config.py'
--- a/bzrlib/tests/test_config.py	2010-08-29 14:32:45 +0000
+++ b/bzrlib/tests/test_config.py	2010-08-30 08:26:45 +0000
@@ -491,7 +491,8 @@
         return self.config_class(*self.config_args)
 
     def create_config(self, content):
-        c = self.config_class.from_string(content, *self.config_args, save=True)
+        kwargs = dict(save=True)
+        c = self.config_class.from_string(content, *self.config_args, **kwargs)
         return c
 
     def test_simple_read_access(self):



More information about the bazaar-commits mailing list