diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-05-18 10:48:01 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-05-18 10:48:01 -0400 |
commit | ec91ec1340c9759add11e7bf2b9b5cd913dc1ee3 (patch) | |
tree | 4f2cab708b1ade9db3dfb8cd606d2b384e67f629 /setup.py | |
parent | 398cec2fd27c7e09d1b01dc383c5aefeb28511c3 (diff) | |
download | cmd2-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-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |