mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 22:07:51 +00:00
Merge pull request #549 from tahoe-lafs/2971.super-argument-order
Fix super() argument order Fixes: ticket:2971
This commit is contained in:
commit
6f7e1250e8
@ -256,7 +256,7 @@ class FileShouldVanishException(Exception):
|
|||||||
timeout
|
timeout
|
||||||
"""
|
"""
|
||||||
def __init__(self, path, timeout):
|
def __init__(self, path, timeout):
|
||||||
super(self, FileShouldVanishException).__init__(
|
super(FileShouldVanishException, self).__init__(
|
||||||
u"'{}' still exists after {}s".format(path, timeout),
|
u"'{}' still exists after {}s".format(path, timeout),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
1
newsfragments/2971.other
Normal file
1
newsfragments/2971.other
Normal file
@ -0,0 +1 @@
|
|||||||
|
A misuse of super() in the integration tests has been fixed.
|
Loading…
Reference in New Issue
Block a user