1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-11-22 01:14:21 +01:00

trying to fix conf error

This commit is contained in:
kakwa 2015-11-03 01:07:54 +01:00
parent f23a77e6f2
commit dcf01e929c

View File

@ -16,6 +16,16 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
import os
import sys
import sys
from unittest.mock import MagicMock
class Mock(MagicMock):
@classmethod
def __getattr__(cls, name):
return Mock()
MOCK_MODULES = ['ldap']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
sys.path.insert(0, os.path.abspath('..'))
@ -50,7 +60,7 @@ copyright = u'2015, Pierre-Francois Carpentier'
#
# The short X.Y version.
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = '0.2.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.