From bc2789f4045cb212dd939c57470d968dac219677 Mon Sep 17 00:00:00 2001 From: Peter Ajamian Date: Tue, 10 Nov 2020 09:48:36 +1300 Subject: [PATCH] Fix "unbalanced parenthesis" error. --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 11dd371..6bdcc2f 100644 --- a/plugin.py +++ b/plugin.py @@ -66,7 +66,7 @@ class Pastebin2cpaste(callbacks.Plugin): 'url': 'https://www.irccloud.com/pastebin/raw/%s' }, 'termbin.com': { - 'regex': re.compile(r'(0-9a-zA-Z)+)[.:?!,]*$'), + 'regex': re.compile(r'([0-9a-zA-Z]+)[.:?!,]*$'), 'url': 'https://termbin.com/%s' } }