--- a/eric6/WebBrowser/Passwords/LoginForm.py Wed Sep 25 18:48:22 2019 +0200 +++ b/eric6/WebBrowser/Passwords/LoginForm.py Wed Sep 25 18:52:40 2019 +0200 @@ -29,5 +29,7 @@ @return flag indicating a valid form (boolean) """ - return not self.url.isEmpty() and \ + return ( + not self.url.isEmpty() and bool(self.postData) + )