#865: Fix typo in Code.

refactor-builder
Kostis Anagnostopoulos 2014-08-02 01:38:30 +02:00
parent 47f990c4d4
commit c1555a703d
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ This happens because our build system doesn't have the dependencies for building
You can mock out the imports for these modules in your ``conf.py`` with the following snippet::
import sys
from unittest.mock import MagickMock as Mock
from unittest.mock import MagicMock as Mock
MOCK_MODULES = ['pygtk', 'gtk', 'gobject', 'argparse', 'numpy', 'pandas']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)