Fix logging statement in test run function (#1220)

This commit is contained in:
Theodore Ni 2024-10-06 10:28:20 -07:00 committed by GitHub
parent ec368e293a
commit 4cf74bea44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -219,7 +219,7 @@ class AppriseURLTester:
if not isinstance(obj, instance):
print('%s instantiated %s (but expected %s)' % (
url, type(instance), type(obj)))
url, type(obj), instance))
assert False
if isinstance(obj, NotifyBase):