From a1c8385314e4471beb50de3937366c1d499244cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ibu=20=E2=98=89=20radempa?= Date: Fri, 1 Jan 2021 12:58:14 +0000 Subject: [PATCH] Remove TXT, TEX, MUSE from the formats claimed to be supported. --- theanarchistlibrary_store/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theanarchistlibrary_store/__init__.py b/theanarchistlibrary_store/__init__.py index 8ab88bb..3e374a7 100644 --- a/theanarchistlibrary_store/__init__.py +++ b/theanarchistlibrary_store/__init__.py @@ -11,5 +11,5 @@ class TheAnarchistLibraryStore(StoreBase): author = 'Ruben Pollan; ibu radempa' version = (1, 2, 0) drm_free_only = True - formats = ['EPUB', 'PDF', 'TXT', 'TEX', 'MUSE'] + formats = ['EPUB', 'PDF'] actual_plugin = 'calibre_plugins.store_theanarchistlibrary.theanarchistlibrary_plugin:TheAnarchistLibraryStore'