diff options
| -rw-r--r-- | IRC/ircasy.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/IRC/ircasy.py b/IRC/ircasy.py index 5a07e8f..c62beee 100644 --- a/IRC/ircasy.py +++ b/IRC/ircasy.py @@ -176,7 +176,7 @@ class asybot(asychat):      pass    def on_nickinuse(self, prefix, command, params, rest): -    regex = re.search('(\d+)$', self.nickname) +    regex = search('(\d+)$', self.nickname)      if regex:        theint = int(regex.group(0))        self.nickname = self.nickname.strip(theint) + str(theint + 1) | 
