File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 87
87
except ImportError :
88
88
pass
89
89
90
- __version__ = '0.7.1a '
90
+ __version__ = '0.7.1 '
91
91
92
92
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
93
93
pyparsing .ParserElement .enablePackrat ()
@@ -1461,7 +1461,7 @@ def _shell_command_complete(search_text):
1461
1461
return []
1462
1462
1463
1463
# Get a list of every directory in the PATH environment variable and ignore symbolic links
1464
- paths = [p for p in os .getenv ('PATH' ).split (':' ) if not os .path .islink (p )]
1464
+ paths = [p for p in os .getenv ('PATH' ).split (os . path . pathsep ) if not os .path .islink (p )]
1465
1465
1466
1466
# Find every executable file in the PATH that matches the pattern
1467
1467
exes = []
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.7.1a '
8
+ VERSION = '0.7.1 '
9
9
DESCRIPTION = "Extra features for standard library's cmd module"
10
10
11
11
LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7
Original file line number Diff line number Diff line change 22
22
23
23
24
24
def test_ver ():
25
- assert cmd2 .__version__ == '0.7.1a '
25
+ assert cmd2 .__version__ == '0.7.1 '
26
26
27
27
28
28
def test_base_help (base_app ):
You can’t perform that action at this time.
0 commit comments