From b3dc95c66c9611696d1734db59c44c612696c1d5 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Thu, 21 Sep 2017 16:13:20 -0500 Subject: [PATCH] Tweak 'no AO3 login allowed' exception message. --- fanficfare/adapters/adapter_archiveofourownorg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficfare/adapters/adapter_archiveofourownorg.py b/fanficfare/adapters/adapter_archiveofourownorg.py index a79a8491..201581ec 100644 --- a/fanficfare/adapters/adapter_archiveofourownorg.py +++ b/fanficfare/adapters/adapter_archiveofourownorg.py @@ -134,7 +134,7 @@ class ArchiveOfOurOwnOrgAdapter(BaseSiteAdapter): ## changed to a scheme where the on-page CSRF token is ## passed to a token_dispenser.json URL to get the token ## then passed to login. - raise exceptions.AccessDenied("AO3 doesn't allow download of (%s) without login and user/password login by automated tools such as FanFicFare is blocked by AO3 site." % self.url) + raise exceptions.AccessDenied("AO3 doesn't allow download of (%s) by tools such as FanFicFare. Automated user/password login is blocked by AO3." % self.url) # use BeautifulSoup HTML parser to make everything easier to find. soup = self.make_soup(data)