Fix the Mock() call in the docs.

rtd2
Eric Holscher 2011-12-08 11:51:10 -08:00
parent b1b26ea768
commit d497a2221d
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ You can mock out the imports for these modules in your conf.py with the followin
pass
def __getattr__(self, name):
return Mock
return Mock()
MOCK_MODULES = ['pygtk', 'gtk', 'gobject', 'argparse']
for mod_name in MOCK_MODULES: