From 4152f4d281376e416d34e261bc7579df696c2810 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 1 Jul 2020 17:52:29 +0100 Subject: [PATCH] _collapse(s) was moved to collapse(s) --- ircrobots/glob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircrobots/glob.py b/ircrobots/glob.py index e3c1533..0ad3c0a 100644 --- a/ircrobots/glob.py +++ b/ircrobots/glob.py @@ -51,4 +51,4 @@ class Glob(object): def match(self, s: str) -> bool: return _match(self._pattern, s) def compile(pattern: str) -> Glob: - return Glob(_collapse(pattern)) + return Glob(collapse(pattern))