cleanup source

This commit is contained in:
2020-11-12 12:12:58 +01:00
parent d93eab4d41
commit dd3f8ac11e
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ def _get_quarantine(quarantines, name):
try:
quarantine = next((q for q in quarantines if q.name == name))
except StopIteration:
raise RuntimeError(f"invalid quarantine 'name'")
raise RuntimeError("invalid quarantine 'name'")
return quarantine