diff options
| -rw-r--r-- | Reaktor/IRC/ircasy.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Reaktor/IRC/ircasy.py b/Reaktor/IRC/ircasy.py index 5a07e8fc..c62beee4 100644 --- a/Reaktor/IRC/ircasy.py +++ b/Reaktor/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) | 
