From 048e917412cb74ada78500f3cfb44d63f26053eb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 Dec 2024 17:35:21 +0530 Subject: [PATCH] ... --- recipes/lwn_weekly.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/lwn_weekly.recipe b/recipes/lwn_weekly.recipe index 108955554f..6f78fc54d1 100644 --- a/recipes/lwn_weekly.recipe +++ b/recipes/lwn_weekly.recipe @@ -54,8 +54,8 @@ class WeeklyLWN(BasicNewsRecipe): if self.username is not None and self.password is not None: br.open('https://lwn.net/login') br.select_form(name='loginform') - br['Username'] = self.username - br['Password'] = self.password + br['uname'] = self.username + br['pword'] = self.password br.submit() return br