diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-08-20 19:35:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 19:35:37 -0400 |
commit | 5f76f955ba3c5cd7f4e3aaef3e9e2163d4160c7a (patch) | |
tree | 075c3bc028e1e9f711c9fa6f63301a418d7ee4c9 /docs/api | |
parent | 5dd2d03ef35a3d33ff53d82c8039d68e263246ee (diff) | |
parent | 27b10936b123053accc41f20246a0c027d0cbb66 (diff) | |
download | cmd2-git-5f76f955ba3c5cd7f4e3aaef3e9e2163d4160c7a.tar.gz |
Merge pull request #980 from python-cmd2/move_module_loading
Fixed AttributeError when loading CommandSet
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/index.rst | 2 | ||||
-rw-r--r-- | docs/api/plugin_external_test.rst | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/api/index.rst b/docs/api/index.rst index 17a25907..1a49adfa 100644 --- a/docs/api/index.rst +++ b/docs/api/index.rst @@ -32,6 +32,7 @@ This documentation is for ``cmd2`` version |version|. py_bridge table_creator utils + plugin_external_test **Modules** @@ -56,3 +57,4 @@ This documentation is for ``cmd2`` version |version|. embedded python environment to the host app - :ref:`api/table_creator:cmd2.table_creator` - table creation module - :ref:`api/utils:cmd2.utils` - various utility classes and functions +- :ref:`api/plugin_external_test:cmd2_ext_test` - External test plugin diff --git a/docs/api/plugin_external_test.rst b/docs/api/plugin_external_test.rst new file mode 100644 index 00000000..58450b11 --- /dev/null +++ b/docs/api/plugin_external_test.rst @@ -0,0 +1,9 @@ +cmd2_ext_test +============= + +External Test Plugin + + +.. autoclass:: cmd2_ext_test.ExternalTestMixin + :members: + |