summaryrefslogtreecommitdiff
path: root/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2.py')
-rwxr-xr-xcmd2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2.py b/cmd2.py
index 8b94c3e2..237d1bfd 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -52,10 +52,10 @@ except NameError:
# Python 3 compatability hack due to no built-in file keyword in Python 3
# Due to two occurences of isinstance(<foo>, file) checking to see if something is of file type
try:
+ file
+except NameError:
import io
file = io.TextIOWrapper
-except ImportError:
- pass # Python2
if sys.version_info[0] == 2:
pyparsing.ParserElement.enablePackrat()