summaryrefslogtreecommitdiffstats
path: root/docs/source/conf.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2017-06-05 08:09:22 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2017-06-05 08:10:13 +0100
commit66718f6d8ee6a3faa0c051571d8487a876ab71e7 (patch)
tree8077e44df918a962807e636b9266848c4606e967 /docs/source/conf.py
parentfd5833c1d81c587519b93307e18b01289e6c4d9d (diff)
downloaddeluge-66718f6d8ee6a3faa0c051571d8487a876ab71e7.tar.gz
deluge-66718f6d8ee6a3faa0c051571d8487a876ab71e7.tar.bz2
deluge-66718f6d8ee6a3faa0c051571d8487a876ab71e7.zip
[Docs] Remove chardet mock to fix requests version check
* chardet is an easily installed pure python module so doesn't need mocking.
Diffstat (limited to 'docs/source/conf.py')
-rw-r--r--docs/source/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 6ddcca161..18e7c3f96 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -59,7 +59,7 @@ class Mock(object):
MOCK_MODULES = ['deluge.ui.gtkui.gtkui', 'deluge._libtorrent',
'libtorrent', 'psyco',
- 'pygtk', 'gtk', 'gobject', 'gtk.gdk', 'pango', 'cairo', 'pangocairo', 'chardet']
+ 'pygtk', 'gtk', 'gobject', 'gtk.gdk', 'pango', 'cairo', 'pangocairo']
for mod_name in MOCK_MODULES:
sys.modules[mod_name] = Mock()