We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee2251 commit 19a72b6Copy full SHA for 19a72b6
CHANGELOG.md
@@ -1,6 +1,6 @@
1
## 0.8.6 (TBD)
2
* Bug Fixes
3
- * TBD
+ * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing help
4
5
## 0.8.5 (April 15, 2018)
6
tests/conftest.py
@@ -8,7 +8,10 @@
8
import sys
9
10
from pytest import fixture
11
-from unittest import mock
+try:
12
+ from unittest import mock
13
+except ImportError:
14
+ import mock
15
16
import cmd2
17
0 commit comments