From 3982ae9102cec1d23fa8abbb707d2355bcffcb76 Mon Sep 17 00:00:00 2001 From: RhodeCode Admin Date: Tue, 27 Feb 2024 15:37:33 +0100 Subject: [PATCH] fix(pycurl): added missing __all__ imports --- rhodecode/lib/vcs/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rhodecode/lib/vcs/__init__.py b/rhodecode/lib/vcs/__init__.py index 6b2b8e65..1202d514 100644 --- a/rhodecode/lib/vcs/__init__.py +++ b/rhodecode/lib/vcs/__init__.py @@ -33,7 +33,8 @@ from rhodecode.lib.vcs.exceptions import ( __all__ = [ 'get_vcs_instance', 'get_backend', - 'VCSError', 'RepositoryError', 'CommitError', 'VCSCommunicationError' + 'VCSError', 'RepositoryError', 'CommitError', 'VCSCommunicationError', + 'CurlSession', 'CurlResponse' ] log = logging.getLogger(__name__)