diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-30 23:16:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-30 23:16:49 -0400 |
commit | b4ce107a16fdf0111a6f024a8d3a99132a858623 (patch) | |
tree | 5582c91c88f99135eb1d282c99a0c2851cf78d57 /cmd2.py | |
parent | 081dc2585faef4303974f4dd6d1707b191e7b56b (diff) | |
parent | dbc1640af4b38f56a23b8c39af3e159ef5a349e2 (diff) | |
download | cmd2-git-b4ce107a16fdf0111a6f024a8d3a99132a858623.tar.gz |
Merge pull request #157 from python-cmd2/default_to_shell
Fixed a bug where an extraneous line was printed at start sometimes
Diffstat (limited to 'cmd2.py')
-rwxr-xr-x | cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ def options(option_list, arg_desc="arg"): # Can we access the clipboard? Should always be true on Windows and Mac, but only sometimes on Linux try: - pyperclip.paste() + _ = pyperclip.paste() except pyperclip.exceptions.PyperclipException: can_clip = False else: |