Skip to content

Commit 86d0e9c

Browse files
authored
Merge branch 'master' into docstr_fmt
2 parents c77c240 + 887bda4 commit 86d0e9c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.4.0 (TBD XX, 2020)
2+
* Bug Fixes
3+
* Fixed tab completion crash on Windows
4+
15
## 1.3.11 (October 1, 2020)
26
* Bug Fixes
37
* Fixed issue where quoted redirectors and terminators in aliases and macros were not being

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,7 @@ def _display_matches_pyreadline(self, matches: List[str]) -> None: # pragma: no
15911591
matches_to_display, _ = self._pad_matches_to_display(matches_to_display)
15921592

15931593
# Print any metadata like a hint or table header
1594-
readline.rl.mode.console.write(sys.stdout.write(self._build_completion_metadata_string()))
1594+
readline.rl.mode.console.write(self._build_completion_metadata_string())
15951595

15961596
# Display matches using actual display function. This also redraws the prompt and line.
15971597
orig_pyreadline_display(matches_to_display)

0 commit comments

Comments
 (0)