Skip to content

Commit

Permalink
ignore doctest import failure in genutils as well
Browse files Browse the repository at this point in the history
  • Loading branch information
vivainio2 authored and vivainio2 committed May 27, 2008
1 parent e819c13 commit 39eeb17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion IPython/genutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
# required modules from the Python standard library
import __main__
import commands
import doctest
try:
import doctest
except ImportError:
pass
import os
import re
import shlex
Expand Down

0 comments on commit 39eeb17

Please sign in to comment.