File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8787except ImportError :
8888 pass
8989
90- __version__ = '0.7.1a '
90+ __version__ = '0.7.1 '
9191
9292# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
9393pyparsing .ParserElement .enablePackrat ()
@@ -1461,7 +1461,7 @@ def _shell_command_complete(search_text):
14611461 return []
14621462
14631463 # 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 )]
14651465
14661466 # Find every executable file in the PATH that matches the pattern
14671467 exes = []
Original file line number Diff line number Diff line change 55"""
66from setuptools import setup
77
8- VERSION = '0.7.1a '
8+ VERSION = '0.7.1 '
99DESCRIPTION = "Extra features for standard library's cmd module"
1010
1111LONG_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 2222
2323
2424def test_ver ():
25- assert cmd2 .__version__ == '0.7.1a '
25+ assert cmd2 .__version__ == '0.7.1 '
2626
2727
2828def test_base_help (base_app ):
You can’t perform that action at this time.
0 commit comments