Changed the type of the topic-separator configurable.

This commit is contained in:
Jeremy Fincher 2004-01-04 13:51:33 +00:00
parent a4507d0d9d
commit 2dbbdb7a4c
1 changed files with 1 additions and 9 deletions

View File

@ -49,19 +49,11 @@ import privmsgs
import callbacks
import configurable
def ConfigurableTopicSeparator(s):
s = configurable.StrType(s)
if s.lstrip() == s:
s = ' ' + s
if s.rstrip() == s:
s += ' '
return s
class Topic(callbacks.Privmsg, configurable.Mixin):
topicFormatter = '%s (%s)'
topicUnformatter = re.compile('(.*) \((\S+)\)')
configurables = configurable.Dictionary(
[('separator', configurable.StrType, ' || ',
[('separator', configurable.SpaceSurroundedStrType, ' || ',
"The separator between individual topics in the channel topic.")]
)
def __init__(self):