don't set title for a reply
This commit is contained in:
parent
40f474881e
commit
cb152b0146
1 changed files with 6 additions and 1 deletions
|
|
@ -155,9 +155,14 @@ class PhpBB(BaseBrowser):
|
||||||
self.page.go_reply()
|
self.page.go_reply()
|
||||||
assert self.is_on_page(PostingPage)
|
assert self.is_on_page(PostingPage)
|
||||||
|
|
||||||
|
# Don't send title because it isn't needed in real use case
|
||||||
|
# and with monboob title is something like:
|
||||||
|
# Re: [Forum Name] Re: Topic Name
|
||||||
|
if title is not None and title.startswith('Re: '):
|
||||||
|
title = None
|
||||||
self.page.post(title, content)
|
self.page.post(title, content)
|
||||||
|
|
||||||
assert self.is_on_page(PostingPage)
|
assert self.is_on_page(PostingPage)
|
||||||
error = self.page.get_error_message()
|
error = self.page.get_error_message()
|
||||||
if error:
|
if error:
|
||||||
raise CantSendMessage('Unable to send message: %s' % error)
|
raise CantSendMessage(u'Unable to send message: %s' % error)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue