mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-18 15:28:12 +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:
@ -256,7 +256,7 @@ class FileShouldVanishException(Exception):
|
||||
timeout
|
||||
"""
|
||||
def __init__(self, path, timeout):
|
||||
super(self, FileShouldVanishException).__init__(
|
||||
super(FileShouldVanishException, self).__init__(
|
||||
u"'{}' still exists after {}s".format(path, timeout),
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user