Line break escape not needed in parentheses
This commit is contained in:
parent
c0f57fbef4
commit
114990e6d4
@ -365,11 +365,13 @@ class Bot(telepot.aio.Bot, Gettable):
|
|||||||
if maintenance_message:
|
if maintenance_message:
|
||||||
self.set_maintenance_message(maintenance_message)
|
self.set_maintenance_message(maintenance_message)
|
||||||
if self.maintenance:
|
if self.maintenance:
|
||||||
return "<i>Bot has just been put under maintenance!</i>\n\n"\
|
return (
|
||||||
"Until further notice, it will reply to users "\
|
"<i>Bot has just been put under maintenance!</i>\n\n"
|
||||||
"with the following message:\n\n{}".format(
|
"Until further notice, it will reply to users "
|
||||||
self.maintenance_message
|
"with the following message:\n\n{}"
|
||||||
)
|
).format(
|
||||||
|
self.maintenance_message
|
||||||
|
)
|
||||||
return "<i>Maintenance ended!</i>"
|
return "<i>Maintenance ended!</i>"
|
||||||
|
|
||||||
def set_authorization_function(self, authorization_function):
|
def set_authorization_function(self, authorization_function):
|
||||||
@ -1598,9 +1600,10 @@ class Bot(telepot.aio.Bot, Gettable):
|
|||||||
"""
|
"""
|
||||||
if type(when) is int:
|
if type(when) is int:
|
||||||
when = datetime.datetime.now() + datetime.timedelta(seconds=when)
|
when = datetime.datetime.now() + datetime.timedelta(seconds=when)
|
||||||
assert type(when) is datetime.datetime, "when must be a datetime "\
|
assert type(when) is datetime.datetime, (
|
||||||
"instance or a number of "\
|
"when must be a datetime instance or a number of seconds (int) "
|
||||||
"seconds (int) to be awaited"
|
"to be awaited"
|
||||||
|
)
|
||||||
if 'inline_message_id' not in update:
|
if 'inline_message_id' not in update:
|
||||||
logging.info(
|
logging.info(
|
||||||
"This inline query result owns no inline_keyboard, so it "
|
"This inline query result owns no inline_keyboard, so it "
|
||||||
@ -1750,7 +1753,7 @@ class Bot(telepot.aio.Bot, Gettable):
|
|||||||
loop.run_until_complete(cls.check_task())
|
loop.run_until_complete(cls.check_task())
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
logging.info(
|
logging.info(
|
||||||
'\n\t\tYour script received a KeyboardInterrupt signal, "\
|
'\n\t\tYour script received a KeyboardInterrupt signal, "
|
||||||
"your bot{} being stopped.'.format(
|
"your bot{} being stopped.'.format(
|
||||||
's are' if len(cls.instances) > 1 else ' is'
|
's are' if len(cls.instances) > 1 else ' is'
|
||||||
)
|
)
|
||||||
@ -1848,7 +1851,7 @@ class Bot(telepot.aio.Bot, Gettable):
|
|||||||
)
|
)
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
logging.info(
|
logging.info(
|
||||||
'\n\t\tYour script received a KeyboardInterrupt signal, "\
|
'\n\t\tYour script received a KeyboardInterrupt signal, "
|
||||||
"your bot{} being stopped.'.format(
|
"your bot{} being stopped.'.format(
|
||||||
's are' if len(cls.instances) > 1 else ' is'
|
's are' if len(cls.instances) > 1 else ' is'
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user