From 85ee21dfd185ebf1b3027616e734bb365548c306 Mon Sep 17 00:00:00 2001 From: John Meuser Date: Fri, 20 Jun 2025 15:27:11 -0400 Subject: [PATCH] Fix form field names for Reason --- recipes/reason_magazine.recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/reason_magazine.recipe b/recipes/reason_magazine.recipe index d7d8920043..e26818b3db 100644 --- a/recipes/reason_magazine.recipe +++ b/recipes/reason_magazine.recipe @@ -98,9 +98,9 @@ class Reason(BasicNewsRecipe): br = BasicNewsRecipe.get_browser(self) if self.username is not None and self.password is not None: br.open('https://reason.com/login') - br.select_form(id='login_form') - br['text_username'] = self.username - br['password_password'] = self.password + br.select_form(id='gform_0') + br['input_1'] = self.username + br['input_2'] = self.password br.submit() return br