diff options
author | Catherine Devlin <catherine.devlin@gmail.com> | 2010-09-19 09:20:56 -0400 |
---|---|---|
committer | Catherine Devlin <catherine.devlin@gmail.com> | 2010-09-19 09:20:56 -0400 |
commit | ef9c367a1f7c45c77aeb8fd834b2325de53e2107 (patch) | |
tree | 41daba54bbad01f012b2db8ac1f7c3024f84ce39 /setup.py | |
parent | b06daf114fa27402bd2ddcc9a5c3493c35ee8219 (diff) | |
download | cmd2-git-ef9c367a1f7c45c77aeb8fd834b2325de53e2107.tar.gz |
encode paste buffer write for Python 3
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ import sys python3 = sys.version_info[0] > 2 if python3: install_requires = [] # will rely on local pyparsing_py3 copy - extra_modules = "pyparsing_py3" + extra_modules = ["pyparsing_py3"] else: install_requires = ['pyparsing>=1.5.1'] extra_modules = [] |