summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-05-18 10:48:01 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-05-18 10:48:01 -0400
commitec91ec1340c9759add11e7bf2b9b5cd913dc1ee3 (patch)
tree4f2cab708b1ade9db3dfb8cd606d2b384e67f629 /setup.py
parent398cec2fd27c7e09d1b01dc383c5aefeb28511c3 (diff)
downloadcmd2-git-ec91ec1340c9759add11e7bf2b9b5cd913dc1ee3.tar.gz
Fixed a hard-coded path separator
Fixed a bug where a path separator was hard-coded as ":" and replaced it with os.path.pathsep Also changed version from 0.7.1a to 0.7.1 in preparation for upcoming release.
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 58505a0a..d09c5fd3 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2'
"""
from setuptools import setup
-VERSION = '0.7.1a'
+VERSION = '0.7.1'
DESCRIPTION = "Extra features for standard library's cmd module"
LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7