From fec59ad937944f44853a462fbd61ac4246c0708d Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 26 Apr 2018 11:51:39 +0000 Subject: [PATCH] Fixed a PyQuery property access that should have been a method call. - Legacy-Id: 15087 --- ietf/submit/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/submit/tests.py b/ietf/submit/tests.py index 57420620b..d59c1b8c0 100644 --- a/ietf/submit/tests.py +++ b/ietf/submit/tests.py @@ -1525,7 +1525,7 @@ Subject: test r = self.client.post(url, files) if r.status_code != 302: q = PyQuery(r.content) - print(q('div.has-error span.help-block div').text) + print(q('div.has-error span.help-block div').text()) self.assertEqual(r.status_code, 302)