From cfdb78b29b123305b973a8d1ad4c348563dc431b Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Mon, 9 Aug 2021 23:34:32 +0200 Subject: [PATCH] Fix exception in whoami command The `URL` import went missing in aa22103594 and thus an exception is raised, when the `whoami` command is executed. --- gitlab_matrix/commands/server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gitlab_matrix/commands/server.py b/gitlab_matrix/commands/server.py index 167063c..2a996e5 100644 --- a/gitlab_matrix/commands/server.py +++ b/gitlab_matrix/commands/server.py @@ -15,6 +15,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . from gitlab import Gitlab as Gl, GitlabAuthenticationError +from yarl import URL from maubot.handlers import command from maubot import MessageEvent