mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-03 01:39:23 +01:00
Used a single-quote when I should've been using triple quotes.
This commit is contained in:
parent
e4eafb98ae
commit
06be2a6474
@ -287,9 +287,9 @@ if __name__ == '__main__':
|
|||||||
if yn('Do you want your bot to join some channels when he connects?')=='y':
|
if yn('Do you want your bot to join some channels when he connects?')=='y':
|
||||||
channels = something('What channels?')
|
channels = something('What channels?')
|
||||||
while not all(ircutils.isChannel, channels.split()):
|
while not all(ircutils.isChannel, channels.split()):
|
||||||
myPrint('Not all of those are valid IRC channels. Be sure to
|
myPrint("""Not all of those are valid IRC channels. Be sure to
|
||||||
prefix the channel with # (or +, or !, or &, but no one uses those
|
prefix the channel with # (or +, or !, or &, but no one uses those
|
||||||
channels, really).')
|
channels, really).""")
|
||||||
channels = something('What channels?')
|
channels = something('What channels?')
|
||||||
afterConnect.append('join %s' % channels)
|
afterConnect.append('join %s' % channels)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user