Skip to content

Commit

Permalink
IronPython support: catch and ignore 'readline' ImportError
Browse files Browse the repository at this point in the history
  • Loading branch information
vivainio committed Jun 22, 2016
1 parent 8f56ba9 commit 2d76e5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion DebugLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@
import cmd
import os
import re
import readline
try:
import readline
except ImportError:
# this will fail on IronPython
pass
import sys

__version__ = '0.3'
Expand Down

0 comments on commit 2d76e5e

Please sign in to comment.