mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-23 09:15:32 +00:00
exception name wrong in super()
This commit is contained in:
@ -205,7 +205,7 @@ class UnwantedFilesException(Exception):
|
|||||||
appeared instead (or in addition).
|
appeared instead (or in addition).
|
||||||
"""
|
"""
|
||||||
def __init__(self, waiting, unwanted):
|
def __init__(self, waiting, unwanted):
|
||||||
super(Exception, self).__init__(
|
super(UnwantedFilesException, self).__init__(
|
||||||
u"While waiting for '{}', unwanted files appeared: {}".format(
|
u"While waiting for '{}', unwanted files appeared: {}".format(
|
||||||
waiting,
|
waiting,
|
||||||
u', '.join(unwanted),
|
u', '.join(unwanted),
|
||||||
|
Reference in New Issue
Block a user