Rev 3700: Remove invalid use of super().__init__() in http://bzr.arbash-meinel.com/branches/bzr/jam-integration

John Arbash Meinel john at arbash-meinel.com
Fri Sep 12 20:23:10 BST 2008


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

------------------------------------------------------------
revno: 3700
revision-id: john at arbash-meinel.com-20080912191822-frogw0q4gn6dqfz9
parent: pqm at pqm.ubuntu.com-20080910174908-pw8t6kbawoxc8rru
author: felix <felix at derklecks.de>
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: jam-integration
timestamp: Fri 2008-09-12 14:18:22 -0500
message:
  Remove invalid use of super().__init__()
-------------- next part --------------
=== modified file 'bzrlib/transport/__init__.py'
--- a/bzrlib/transport/__init__.py	2008-09-03 09:11:20 +0000
+++ b/bzrlib/transport/__init__.py	2008-09-12 19:18:22 +0000
@@ -293,7 +293,7 @@
     _bytes_to_read_before_seek = 0
 
     def __init__(self, base):
-        super(Transport, self).__init__(base=base)
+        super(Transport, self).__init__()
         self.base = base
 
     def _translate_error(self, e, path, raise_generic=True):



More information about the bazaar-commits mailing list