Skip to content

Commit

Permalink
trying to fix doc build... again
Browse files Browse the repository at this point in the history
  • Loading branch information
kakwa committed Nov 3, 2015
1 parent baeaf56 commit 6501096
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
import os
import sys
import sys
from unittest.mock import MagicMock

try:
from mock import Mock as MagicMock
except:
from unittest.mock import MagicMock

class Mock(MagicMock):
@classmethod
Expand Down

0 comments on commit 6501096

Please sign in to comment.