diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-05-18 11:07:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-18 11:07:13 -0400 |
commit | 8297145a74ee4d239cfb7d68a47f59342fd831fe (patch) | |
tree | 4f2cab708b1ade9db3dfb8cd606d2b384e67f629 /setup.py | |
parent | 398cec2fd27c7e09d1b01dc383c5aefeb28511c3 (diff) | |
parent | ec91ec1340c9759add11e7bf2b9b5cd913dc1ee3 (diff) | |
download | cmd2-git-8297145a74ee4d239cfb7d68a47f59342fd831fe.tar.gz |
Merge pull request #101 from python-cmd2/windows_path
Fixed a hard-coded path separator
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 |