Skip to content

Commit 3eaef15

Browse files
committed
Fixed a bug found by rjsparks@nostrum.com in the submission test text output.
- Legacy-Id: 11279
1 parent 63ca9ad commit 3eaef15

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
@@ -109,7 +109,7 @@ def do_submission(self, name, rev, group=None, formats=["txt",]):
109109
r = self.client.post(url, files)
110110
if r.status_code != 302:
111111
q = PyQuery(r.content)
112-
print(q('div.has-error div.alert').text)
112+
print(q('div.has-error div.alert').text())
113113

114114
self.assertEqual(r.status_code, 302)
115115

0 commit comments

Comments
 (0)