diff --git a/beetsplug/export.py b/beetsplug/export.py index ec90332b4..46776354f 100644 --- a/beetsplug/export.py +++ b/beetsplug/export.py @@ -120,10 +120,10 @@ class ExportFormat(object): return JsonFileFormat(**kwargs) else: return JsonPrintFormat() - raise NotImplemented("") + raise NotImplementedError() def export(self, data, **kwargs): - raise NotImplemented("") + raise NotImplementedError() class JsonPrintFormat(ExportFormat):