summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCatherine Devlin <catherine.devlin@gmail.com>2010-09-19 09:20:56 -0400
committerCatherine Devlin <catherine.devlin@gmail.com>2010-09-19 09:20:56 -0400
commitef9c367a1f7c45c77aeb8fd834b2325de53e2107 (patch)
tree41daba54bbad01f012b2db8ac1f7c3024f84ce39 /setup.py
parentb06daf114fa27402bd2ddcc9a5c3493c35ee8219 (diff)
downloadcmd2-git-ef9c367a1f7c45c77aeb8fd834b2325de53e2107.tar.gz
encode paste buffer write for Python 3
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3cda4ba6..62585763 100755
--- a/setup.py
+++ b/setup.py
@@ -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 = []