summaryrefslogtreecommitdiff
path: root/cmd2.py
diff options
context:
space:
mode:
authorCatherine Devlin <catherine.devlin@gmail.com>2011-07-20 23:23:09 -0400
committerCatherine Devlin <catherine.devlin@gmail.com>2011-07-20 23:23:09 -0400
commit6e58471025072e8eef9c84e3f463d7dc0fb9eebb (patch)
treebb1d59f59385c6dfc66cf736706e3fd213eeb916 /cmd2.py
parentb4ae011674707191e820f2d2f08be1141b035c58 (diff)
downloadcmd2-git-6e58471025072e8eef9c84e3f463d7dc0fb9eebb.tar.gz
require pyparsing 1.5.6 for its Python 3 power
Diffstat (limited to 'cmd2.py')
-rwxr-xr-xcmd2.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/cmd2.py b/cmd2.py
index aebe6186..46e29d44 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -40,12 +40,7 @@ import platform
import copy
from code import InteractiveConsole, InteractiveInterpreter
from optparse import make_option
-
-if sys.version_info[0] > 2:
- import pyparsing_py3 as pyparsing
- raw_input = input
-else:
- import pyparsing
+import pyparsing
__version__ = '0.6.3'