This commit is contained in:
Jean-Paul Calderone 2019-02-15 13:58:02 -05:00
parent b9fc08a01f
commit 6d948b68cf
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,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),
)