mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +01:00
Lowered the default values for limit on shrinkList and privmsgPayload.
This commit is contained in:
parent
e06ce955fa
commit
bacbf53386
@ -204,7 +204,7 @@ def replyTo(msg):
|
||||
else:
|
||||
return msg.nick
|
||||
|
||||
def privmsgPayload(L, sep, limit=450):
|
||||
def privmsgPayload(L, sep, limit=425):
|
||||
"""Returns a valid privmsg payload given a list of strings and a separator.
|
||||
|
||||
Items are popped from the back of the list until the payload is small
|
||||
@ -213,7 +213,7 @@ def privmsgPayload(L, sep, limit=450):
|
||||
shrinkList(L, sep, limit)
|
||||
return sep.join(L)
|
||||
|
||||
def shrinkList(L, sep='', limit=450):
|
||||
def shrinkList(L, sep='', limit=425):
|
||||
"""Shrinks a list of strings to a given combined length of limit."""
|
||||
length = len(sep)
|
||||
while reduce(operator.add, map(length.__add__, map(len, L)), 0)> limit:
|
||||
|
Loading…
Reference in New Issue
Block a user