From 6f7e700cd24fbf6d2c7881c7a544de6d501d6b08 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Thu, 19 May 2016 09:13:18 -0500 Subject: [PATCH] Fix for adapter_ashwindersycophanthexcom login. --- fanficfare/adapters/adapter_ashwindersycophanthexcom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fanficfare/adapters/adapter_ashwindersycophanthexcom.py b/fanficfare/adapters/adapter_ashwindersycophanthexcom.py index bcdb4fc4..1c4a7391 100644 --- a/fanficfare/adapters/adapter_ashwindersycophanthexcom.py +++ b/fanficfare/adapters/adapter_ashwindersycophanthexcom.py @@ -77,7 +77,8 @@ class AshwinderSycophantHexComAdapter(BaseSiteAdapter): ## Login seems to be reasonably standard across eFiction sites. def needToLoginCheck(self, data): if 'This story contains adult content and/or themes.' in data \ - or "That password doesn't match the one in our database" in data: + or "That password doesn't match the one in our database" in data \ + or "Member Login" in data: return True else: return False