Skip to content

Commit fec59ad

Browse files
committed
Fixed a PyQuery property access that should have been a method call.
- Legacy-Id: 15087
1 parent d599a4d commit fec59ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/submit/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ def do_submission(self, name, rev, group=None, formats=["txt",]):
15251525
r = self.client.post(url, files)
15261526
if r.status_code != 302:
15271527
q = PyQuery(r.content)
1528-
print(q('div.has-error span.help-block div').text)
1528+
print(q('div.has-error span.help-block div').text())
15291529

15301530
self.assertEqual(r.status_code, 302)
15311531

0 commit comments

Comments
 (0)