Topic.reorder: Fixed some bugs found via jemfinch's new tests

This commit is contained in:
James Vega 2003-12-09 14:51:04 +00:00
parent 88581d99e4
commit 05238bfcc6
1 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,9 @@ class Topic(callbacks.Privmsg, configurable.Mixin):
except ValueError:
irc.error(msg, 'The positions must be valid integers.')
return
if utils.sorted(order) != range(num):
irc.error(msg, 'All topic numbers must be specified uniquely')
return
try:
newtopics = [topics[i] for i in order]
newtopic = self._joinTopic(newtopics, channel)