Rev 1749: Fix errorenous call to __init__. in http://people.samba.org/bzr/jelmer/bzr-svn/trunk

Jelmer Vernooij jelmer at samba.org
Sun Nov 9 20:01:26 GMT 2008


At http://people.samba.org/bzr/jelmer/bzr-svn/trunk

------------------------------------------------------------
revno: 1749
revision-id: jelmer at samba.org-20081109200124-r6jom0wirff03ngi
parent: jelmer at samba.org-20081109195807-mducpprmvql5gbju
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 0.4
timestamp: Sun 2008-11-09 21:01:24 +0100
message:
  Fix errorenous call to __init__.
modified:
  NEWS                           news-20061231030336-h9fhq245ie0de8bs-1
  mapping3/__init__.py           __init__.py-20080502174630-9324zh25kka98vlw-1
=== modified file 'NEWS'
--- a/NEWS	2008-11-09 18:33:14 +0000
+++ b/NEWS	2008-11-09 20:01:24 +0000
@@ -13,6 +13,8 @@
    * Cope with file properties being modified by other parties than 
      bzr-svn. (#295284)
 
+   * Fix erroneous call to object.__init__() causing issues with Python2.6.
+
 bzr-svn 0.4.14	2008-11-03
 
   BUG FIXES

=== modified file 'mapping3/__init__.py'
--- a/mapping3/__init__.py	2008-11-08 20:02:02 +0000
+++ b/mapping3/__init__.py	2008-11-09 20:01:24 +0000
@@ -335,7 +335,6 @@
 class BzrSvnMappingv3FileProps(mapping.BzrSvnMappingFileProps, BzrSvnMappingv3):
 
     def __init__(self, scheme, guessed_scheme=None):
-        mapping.BzrSvnMappingFileProps.__init__(self, scheme, guessed_scheme)
         BzrSvnMappingv3.__init__(self, scheme, guessed_scheme)
         self.revprop_map = mapping.BzrSvnMappingRevProps()
 




More information about the bazaar-commits mailing list