# HG changeset patch # User RhodeCode Admin # Date 2024-02-27 14:37:33 # Node ID 05d560ef5d32f8587ca1ef7c7f95cfd90c0b95b5 # Parent 4e02b4420a1eefed408a10b3b849282ca9fae8e6 fix(pycurl): added missing __all__ imports diff --git a/rhodecode/lib/vcs/__init__.py b/rhodecode/lib/vcs/__init__.py --- 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__)